Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
8k views

What is the best way to read GetResponseStream()?

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) ...
2
votes
3answers
84 views

NullReferenceException reading from an asynchronous HttpWebRequest stream

I'm programming an application for Windows Phone 7. This application firstly sends, and then receives data from a server via HttpWebRequest. Most times it works fine, but sometimes, after receiving a ...
1
vote
0answers
102 views

first HttpWebResponse.GetResponseStream() fails, second one works?

I am creating a program that auto login into a website using forms authentication. When ever I call my method to connect to the website, it returns me a empty document text. However, if I call the ...
0
votes
2answers
159 views

How to cancel reading from a Stream obtained using HttpWebResponse.GetResponseStream()?

I use HttpWebResponse.BeginGetResponse() method to make a request to my server. In the "Request Complete" notification I do the following (no error handling code included): HttpWebResponse response = ...
0
votes
1answer
170 views

Number of bytes read from GetResponseStream() are equal to 0 before the end of file (c#)

I am making a c# download manager and I am having a problem with downloading some of the links. After reading about 50% of the file, the read function returns 0. I want to know why is that happening. ...
0
votes
1answer
98 views

Client not able to contact the web-server over wireless n/w - through CODE

//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 ...
-1
votes
1answer
23 views

Try to understand HttpWebRequest.GetResponseStream

i am trying to understand how GetResponseStream works. when I do request.GetResponseStream, does it download all the data then return the Stream object?