0
votes
2answers
21 views
ResponseStream re-read after read timeout
I am wondering when I read a response stream and a timeout occurs, can I retry the read? Or do I have to make a new request? The server that I am downloading from does not suppor …
0
votes
2answers
72 views
IIS/Cache problem?
I have a program that checks if a file is present every 3 seconds, using webrequest and webresponse. If that file is present it does something if not, ect, that part works fine. I …
0
votes
1answer
85 views
WebRequest.GetResponse locks up?
When writing the below my code locks up on GetResponse. Why?
try
{
WebRequest myWebRequest = WebRequest.Create(strURL);
WebResponse myWebRe …
0
votes
4answers
330 views
Reading data from an open HTTP stream
Hi,
I am trying to use the .NET WebRequest/WebResponse classes to access the Twitter streaming API here "http://stream.twitter.com/spritzer.json".
I need to be able to open the c …
0
votes
1answer
136 views
The remote server returned an error: (422)
I am getting following error when I am trying to get WebResponse usiing
WebResponse response = request.GetResponse()
The remote server returned an error: (422).
at System.Net.H …
7
votes
4answers
610 views
Mocking WebResponse’s from a WebRequest
I have finally started messing around with creating some apps that work with RESTful web interfaces, however, I am concerned that I am hammering their servers every time I hit F5 t …
