Tagged Questions
The system.net.webexception tag has no wiki summary.
16
votes
3answers
31k views
No connection could be made because the target machine actively refused it?
Hi,
Sometimes I get the following error while I was doing HttpWebRequest to a WebService. I copied my code below too. Thanks for any helpful reply/replies.
System.Net.WebException: Unable to ...
5
votes
3answers
717 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
113 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
137 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
577 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
3answers
3k views
System.Net.WebException: The request was aborted: the request was cancelled
I have a WCF service that has been giving me this error under load conditions (and I cant seem to recreate the error otherwise). we've been trying to find a way aroud it for about a week now with no ...
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 ...
2
votes
1answer
1k 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
3answers
277 views
Getting '(400) Bad Request' with GetResponseStream() in C#
I am using the following code to send a get request to facebook graph api oauth server.
public string GetAccessToken(string code)
{
HttpWebRequest req = (HttpWebRequest) ...
1
vote
1answer
374 views
Politely checking to see if a file exists before downloading
I'm trying to download files using the Net.WebClient call to DownloadFile
Using client As New Net.WebClient()
Try
client.DownloadFile(PDFURL, FullPDFFilePath)
I then catch the exception ...
1
vote
1answer
160 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
1answer
705 views
Problem with webclient: Expectation failed?
I have a custom Http Handler which manipulates HTTP POST and GET. I got the project working on a seperate isolated server now need to put it in production...
using (var client = new WebClient())
...
1
vote
3answers
714 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
1answer
366 views
What is the main purpose of WebExceptionStatus.Success?
I am a bit confused about the purpose of the enum value Success of the WebExceptionStatus enumeration. I did a search and did not find this enumeration being used outside the WebException class. This ...
1
vote
2answers
607 views
WCF method called twice
I have a web service which is returning data to the desktop application. The problem I am having is, when the web service returns small volume of data everything works fine but when the volume of data ...
1
vote
2answers
313 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
40 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
0answers
34 views
Web request error/Web Exception
I am trying to get pdf file data using webclient but it is throwing an exception of
"The remote server returned an error: (404) Not Found."
Here are error details:
System.Net.WebException was ...
0
votes
1answer
149 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
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
859 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
441 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
446 views
In windows phone 7, How to download the Google translate mp3 from site “http://translate.google.com/translate_tts?tl=en&q=hello+world”?
How to download the Google translate mp3 from site "http://translate.google.com/translate_tts?tl=en&q=hello+world"?
I'm using the following code:
WebClient wc = new WebClient();
...
0
votes
1answer
165 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
178 views
SoapHttpClientProtocol throws NameResolutionFailure, not ProxyNameResolutionFailure
SoapHttpClientProtocol throws a WebException with status NameResolutionFailure when the proxy name is invalid. How then can I tell if it's the proxy or the destination that is in err?
I'd rather not ...
0
votes
1answer
778 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
1answer
21 views
Problem running web server through perl script
I am starting a web server(Cassini) on a remote machine through a perl script from my local machine. I am also specifying the virtual path, root directory settings, etc.
However, I am not able to ...
0
votes
1answer
121 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
872 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
1answer
1k 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
992 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 ...