Tagged Questions

5
votes
3answers
715 views

HttpWebRequest.GetResponse() - what specific status codes cause an exception to be thrown?

I've hunted around for some definitive documentation on this but haven't had much luck finding any. Basically - the question is - for which HTTP Status codes coming back from the server will ...
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"); ...
5
votes
2answers
4k views

WebException when reading a WebException's response stream

I'm communicating with a web server from .Net. The web server throws a 500 internal server error and writes a detailed error message. I'm trying to read the error message that is received from a web ...
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 ...
3
votes
2answers
2k views

C# HttpWebRequest.GetResponse - how is StatusCode usage handled for a non-exception vs webexception response?

Can someone help clear up the usage of the "StatusCode" property in HttpWebResponse and WebException? For example it seems that if: a) there is no exception, then the HttpWebResponse will have a ...
2
votes
2answers
112 views

Abort request wp7

If I abort the request I have a WebException. How I can check if request is aborted? // if (asynchronousResult.AsyncState !="Aborted" ) { HttpWebResponse response = ...
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 = ...
2
votes
2answers
576 views

How to avoid WebException for 403 Forbidden response?

I have an application which sometimes must do some requests to the server to see that those requests are properly blocked. In other words, the expected server answer is 403 Forbidden. With a piece of ...
1
vote
1answer
159 views

HttpWebRequest: cleaner access to numeric HTTP status codes?

When I try to get a nonexistent page, or use an invalid HTTP method, HttpWebRequest.GetResponse() throws a System.Net.WebException, with a Status property of ProtocolError. In its Message property I ...
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 ...
1
vote
3answers
7k views

Error 502 (Bad Gateway) when sending a request with HttpWebRequest over SSL

I have the following snippet in classic ASP, to send a command and retrieve the response over SSL: Dim xmlHTTP Set xmlHTTP = Server.CreateObject("Msxml2.ServerXMLHTTP.3.0") xmlHTTP.open "POST", ...
0
votes
1answer
277 views

The operation has timed out while reading xml file

I am getting the following error while I am reading an remote xml file to convert currency on HttpWebRequest.GetResponse() section. the method that I used ...
0
votes
1answer
857 views

System.Net.HttpWebResponse.GetResponseStream() returns truncated body in WebException

For some reason beyond my understanding requests made to a perticular website (https://learningnetwork.cisco.com/people/mrollins?view=profile) result in a reqsponse-object whose responsestream contain ...
0
votes
1answer
440 views

Why does HttpWebRequest fail the first time and then works OK?

I am truing to integrate fusemail in asp.net 2.0. I am using HttpWebRequest for requesting the API pages. It has recently come to my notice that HttpWebRequest fails the first time and then continues ...
0
votes
1answer
164 views

Periodic timeouts when using HttpWebRequest

I have some code that send a simple xml web request. It is called from a windows service. Sometimes the service starts throwing exceptions (System.Net.WebException: The operation has timed out) and a ...
0
votes
1answer
775 views

Internal server error (500) httpwebrequest

System.Net.WebException: The remote server returned an error: (500) Internal Server Error. at System.Net.HttpWebRequest.GetResponse() at refill.btnRequestRefill_Click(Object sender, ...
0
votes
4answers
870 views

.NET HttpWebRequest HTTPS Error

Hello I'm trying to fetch data from a https web (i'm not behind firewall or proxy) however even accepting all certificates it keeps throwing System.Net.WebExceptionStatus.SecureChannelFailure with the ...
0
votes
3answers
990 views

Streamwriter writes but gives web exception

I am trying to insert data via web service. The code below writes to the database; however, I have an error (see bottom). What goes wrong here? and how to fix it? //Create the web request ...