The webexception tag has no wiki summary.
5
votes
2answers
1k views
The underlying connection was closed: An unexpected error occurred on a receive
First, sorry for my en english, i'm french and it's well known that french people are pretty bad in foreign languages.
I'm here because i have a problem while downloading some files through ftp ...
3
votes
1answer
2k views
Handling two WebException's properly
I am trying to handle two different WebException's properly.
Basically they are handled after calling WebClient.DownloadFile(string address, string fileName)
AFAIK, so far there are two I have to ...
2
votes
0answers
355 views
How can I read the response from a web request when the Status is not 200?
I am having difficulty getting the response text from a HTTP web request in vb.net when I get a web exception.
This is the code I am doing it with.
Try
myWebResponse = ...
2
votes
1answer
242 views
Is there a way to change HttpWebRequest behavior on 400/500 status codes?
I am working on building a fluent REST client interface on top of the HttpWebRequest/HttpWebResponse types in .NET. So far, so good...however I am trying to develop a pluggable security framework that ...
2
votes
1answer
429 views
WebException NotFound received when using Silverlight with ASP.NET MVC
I'm not entirely sure how to explain this, but basically I am trying to use a Silverlight application hosted within an ASP.NET MVC application. I have a basic controller on the MVC side that contains ...
2
votes
1answer
3k views
System.UriFormatException: Invalid URI: The hostname could not be parsed
All of a sudden I'm getting the following error on my website. It doesnt access a db. just a simple website using .net 2.0.
I did recently apply the available windows server 2003 service packs. Could ...
1
vote
2answers
80 views
Xml response file: Received in browser, not via C#
I'm trying to access the last.fm APIs via C#. As a first test I'm querrying similar artists if that matters.
I get an XML response when I pass a correct artist name, i.e. "Nirvana". My problem is when ...
1
vote
0answers
99 views
Setting Content-Type header on WebClient.OpenWrite generates WebException
I am using WebClient.OpenWrite to POST to a WCF HTTP Web service in .NET 4. If I set the content type on the WebClient headers, then I wind up with a WebException (400 - Bad Request) when the stream ...
1
vote
1answer
209 views
How do I get a custom message from a 403 error thrown from a java servlet caught as a WebException in .net?
I have a java servlet that throws a custom error 403 (Forbidden) when the user authenticates with an incorrect user/password.
Java Servlet code:
response.sendError(response.SC_FORBIDDEN, "Login ...
1
vote
0answers
363 views
System.Net.WebException: Error getting response stream (ReadDone2)
I'm getting to following error when I try to port my code over to mono. It works fine in windows and it even compiles in Linux.
When I'm working with the HttpWebRequest(a button calls a method that ...
1
vote
2answers
433 views
How to parse internalexception from WebException Response
I have C# code that does a POST to an OData web service, which results in a record being inserted into a database. If there is an exception, such as a primary key violation, I want to capture and log ...
0
votes
2answers
111 views
Cannot download image using WebClient in ASP.NET
In one of the mobile site, i created a webpage, wherein i am using webclient to the download the image from the main site(main site of mobile) and resize using bitmap, and get the image to the mobile ...
0
votes
1answer
142 views
How to set MaxBufferSize/MaxReceivedMessageSize in Windows Phone 7?
I've been having trouble querying a web server for information from my Windows Phone 7 app, and from my research, I've traced it back to MaxBufferSize/MaxReceivedMessageSize being too low. The problem ...
0
votes
0answers
30 views
Webex delete recorded session API
Does any one know what is the API that is to used to delete a webex recording..
...
0
votes
4answers
159 views
Get Error number in WebException Error
How To Get Error number in WebException Error?
try
{
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create("site");
HttpWebResponse response = ...
0
votes
2answers
389 views
Problem with Httpwebrequest (503)
I am using HttpWebrequest to GET the result from google.I use proxies to get the data.now there is a strange problem that for some queries it return the data and for some it throws the exception The ...
0
votes
2answers
803 views
Problem SSL Certificate C#
In my C# application, I got to call web services via https and validate using a .crt file that I already have. Here is the correct solution for such needs. I have updated this post once I got a ...
0
votes
1answer
1k views
HttpWebRequest results in “The request was aborted: Could not create SSL/TLS secure channel”
We've introduced a few .NET pages into a Classic ASP application. When a user hits one of the .NET pages we use an HttpWebRequest to get session variable values from the ASP side by sending the ...
0
votes
1answer
304 views
What causes “Unable to connect to the remote server”
I've got a downloader app. It works fine for me, but one user send me bug report saying that System.Net.WebException is throwed with 'Unable to connect to the remote server', while it works for the ...
0
votes
3answers
1k views
WebException Could not establish trust relationship for the SSL/TLS secure channel
My company has developed a .NET web service and a client dll that uses that web service. The webservice is hosted on our server over ssl and the cert is provided and signed by GoDaddy. We have some ...
0
votes
1answer
465 views
The remote name could not be resolved: 'localhost'
How can the application not be able to lookup localhost?
The remote name could not be resolved: 'localhost';
StackTrace;
at ...
0
votes
1answer
288 views
Link checker ; how to avoid false positives
I'm working a on a link checker/broken link finder and I am getting many false positives, after double checking I noticed that many error codes were returning webexceptions but they were actually ...