search for: httpwebrequest

Displaying 4 results from an estimated 4 matches for "httpwebrequest".

2008 Feb 29
1
Lighttpd & VB.Net HTTPWEBREQUEST
Hi guys/gals, I don''t know if anyone can answer this, and this post may belong in a VB.Net forum, but my question is more for lighttpd. I have a .net app that sends a HTTPWEBREQUEST to the webserver. Then my def saves this hit to a mysql db. In webrick, this works fine, but not in lighttpd. I was wondering if anyone has ever done this or does anyone know if lighttpd does not accept web requests from another application? The reason I am using lighttpd is because I have to u...
2007 Apr 05
2
URL check URL validity
Hi everyone, I have a web app that at some point asks for a URL ... and i need to check that url''s validity ... is there a way to do that in RoR... - in C# i would to something along the lines of HttpWebRequest hReq = (HttpWebRequest)WebRequest.Create(url................); HttpWebResponse hRes = (HttpWebResponse)hReq.GetResponse(); rCode = hRes.get_StatusCode()...etc Any input is greatly appreciated. Thank you, --~--~---------~--~----~------------~-------~--~----~ You received this message because y...
2013 Oct 03
1
decoding vorbis bytes into floats
...n on, I would be dumping raw ogg bytes into this function and returning floats. I am working in the games industry using C++ and C# every day, but I have less experience than I would like using open-source libraries. Presently, I can get a continuous stream of bytes of OGG from an asynchronous HttpWebRequest through C#. I want to pass those bytes into the function that I'm describing. Shouldn't I be able to pass any random sequence of bytes into this function and get some kind of float pattern that can be read as PCM (thought it may sound awful if it is truly a random array of bytes)? For...
2006 Mar 20
0
Automatic parsing of POSTed XML into @params
...lt;/request>", I could access the value "abcdefg" in my controller as params[:request][:token]. For the life of me I can''t get this working again on a new rails project. Unfortunately the source code for my original HTTP client is no longer available (written in C# using HttpWebRequest). I''ve tried using different content types, including text/xml, but the parameters always come across as one big string when I view the output of the development.log file. For example, when posting the above XML using a content type of text/xml I end up with the following result: Paramet...