C# webservice async callback not getting called on HTTP 407 error.
- by Ben
Hi,
I am trying to test the use-case of a customer having a proxy with login credentials, trying to use our webservice from our client.
If the request is synchronous, my job is easy. Catch the WebException, check for the 407 code, and prompt the user for the login credentials.
However, for async requests, I seem to be running into a problem: the…