Tagged Questions

5
votes
2answers
1k views

Detect HTTP Proxy error for WebRequest

How to detect that a WebRequest failed due to a web proxy error and not a target web server error? try { var request = (HttpWebRequest)WebRequest.Create("http://www.example.com"); ...
3
votes
3answers
1k views

Getting “underlying connection was closed” on HttpWebRequest

I have an application written in VB.NET (NOT asp.net, it is a Windows Console app). I am trying to call a url (an html page) and get back the response into a string. The response is straight JSON, no ...
2
votes
3answers
136 views

Keep trying to talk to server when the Internet is down

So my application is exchanging request/responses with a server (no problems), until the internet connection dies for a couple of seconds, then comes back. Then a code like this: response = ...
1
vote
2answers
270 views

Asp.net HttpWebResponse - how can I not depend on WebException for flow control?

I need to check whether the request will return a 500 Server Internal Error or not (so getting the error is expected). I'm doing this: HttpWebRequest request = WebRequest.Create(url) as ...