Tagged Questions

2
votes
1answer
153 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"); …
1
vote
1answer
28 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
1answer
61 views

WebClient UploadFile errors

I am trying to upload files to a web server using System.Net.WebClient.UploadFile but I keep getting a WebException. Specifically, I am getting 3 errors. I have no idea why I am not getting the same …
1
vote
2answers
383 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 …
0
votes
1answer
24 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
134 views

System.Net.Sockets.SocketException

I have an application that makes a sync request on an external resource via http(s). Every few weeks I get the following exception Exception: System.Net.WebException - Message: Unable to connect to …
0
votes
3answers
253 views

Streamwriter writes but gives web exception

Hi - 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
177 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
97 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 …