Tagged Questions
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");
...
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 ...