Tagged Questions

16
votes
3answers
35k 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
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 ...
2
votes
3answers
158 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
508 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
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
349 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
168 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
1answer
237 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
942 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
183 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
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
4answers
916 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 ...