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"); ...
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
1answer
489 views

HTTP Protocol violation when downloading webpage using HtmlAgilityPack

I'm trying to parse download pages from www.mediafire.com, but i really often get a System.Net.WebException with the following message, when i try to load a page to a HtmlDocument: The server ...
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 ...
2
votes
1answer
644 views

C# System.Net.WebException Retrieving custom 404 message

I'm working on a client for a webservice that returns standard Status Codes (404, 200 etc) as well a custom json message. I haven't been able to find a property of the WebException that contains the ...
1
vote
3answers
711 views

503 (Server Unavailable) WebException when loading local XHTML file

So I'm currently working on an ePub reader application, and I've been reading through a bunch of regular XML files just fine with System.Xml and XmlDocument: XmlDocument xmldoc = new XmlDocument(); ...
1
vote
2answers
311 views

What exception is thrown if a web service I'm using times out?

I'm calling a .NET 2.0 web service within my existing .NET 2.0 web service. I would like to know what exception is thrown from the web method if a timeout happens. I have set the web service timeout ...
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", ...
1
vote
1answer
231 views

How do I get the URI that threw a WebException?

I'm calling a method on a webservice and it is throwing a 403 Forbidden WebException... System.Net.WebException: The request failed with HTTP status 403: Forbidden. I've got this error ...
0
votes
1answer
38 views

System.Net.WebException on Console Application

I wrote a simple console application to check and see if my site it up by check a link that always work. The problem was it went down the other day and it didnt notify me, it had the error: ...
0
votes
1answer
148 views

WebException: The underlying connection was closed

I am currently calling a webservice from an ASP.net page. I am trying to call a REST based web service to request a certain action and a 404 is returned (which represents a specific error for my ...
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
119 views

Avoid exception in WebRequestObject

I am reading data from a website as follows: webRequestObj = (HttpWebRequest)WebRequest.Create("http://localhost/503errorPage.php"); theResponse = webRequestObj.GetResponse(); theResponseStream = ...
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 ...
0
votes
1answer
325 views

Windows Service restarts on Exception

I'm building a windows service that grabs information from a website periodically How can I start looking again when a exception is caught? for example when internet goes down and up later. Code: ...
0
votes
1answer
151 views

Exception clogging up my IDE

I'm scanning for dead links on one of my pages. On one i get many "A first chance exception of type 'System.Net.WebException' occurred in System.dll" Dozens of them. How do i have MSVC# NOT display ...