T
Tom O'Connell via .NET 247
Hello all,
I have found your forums very helpful, but now I have a questionit seems has not been encountered (or I can't find it). I havea client that attaches itself to a webservice on startup. Thisclient looks for a proxy error and launches a proxy dialog togarner information from the user. I then pass this info usingthe proxy object, but I cannot seem to get past the proxy serverwhen it is using digest authentication. Here is a sample of thecode I am using:
*********************************************
WebProxy proxyObject = new WebProxy();
proxyObject = WebProxy.GetDefaultProxy();
NetworkCredential myCred = newNetworkCredential(p.username,p.password,p.domain);
proxyObject.Credentials = myCred;
GlobalProxySelection.Select = proxyObject;
*********************************************
This code works fine for both Integrated and BasicAuthentication. Anyone know what's up? I would be extremelyappreciative of your help.
I have found your forums very helpful, but now I have a questionit seems has not been encountered (or I can't find it). I havea client that attaches itself to a webservice on startup. Thisclient looks for a proxy error and launches a proxy dialog togarner information from the user. I then pass this info usingthe proxy object, but I cannot seem to get past the proxy serverwhen it is using digest authentication. Here is a sample of thecode I am using:
*********************************************
WebProxy proxyObject = new WebProxy();
proxyObject = WebProxy.GetDefaultProxy();
NetworkCredential myCred = newNetworkCredential(p.username,p.password,p.domain);
proxyObject.Credentials = myCred;
GlobalProxySelection.Select = proxyObject;
*********************************************
This code works fine for both Integrated and BasicAuthentication. Anyone know what's up? I would be extremelyappreciative of your help.