What is the best way to read an HTTP response from GetResponseStream ?
Currently I'm using the following approach.
Using SReader As StreamReader = New StreamReader(HttpRes.GetResponseStream)
SourceCode = SReader.ReadToEnd()
End Using
I'm not quite sure if this is the most effecient way to read an http response.
I need the output ...
//code in the client
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://192.168.0.5/test");
WebResponse response = request.GetResponse();
I have a LAN setup with two machines in my workgroup.
- 192.168.0.1 (that's the client)
- 192.168.0.5 (that's the web server)
The above piece of code works perfectly fine in a sim...
Hi I am a newbie to CF development in C#. My goal is to insert data via web service call; Upon successful insertion, my client will get an XML status ok. I am using HttpWebRequest and HttpWebResponse - and StreamWriter/StreamReader to write/read data into stream.
The code and error message are posted below -- any idea how to fix this?
...