Hi,
my code is providing an access to our web service.
WebProxy proxy = new WebProxy(ProxyURL, ProxyPort); proxy.UseDefaultCredentials = false;
NetworkCredential nc = new NetworkCredential( ProxyLogin, ProxyPassword); proxy.Credentials = nc;
myWebService.Proxy = proxy;
My problem is that customer doesn't know ProxyLogin and ProxyPassword, especially if he is running Microsoft ISA server. Company policy doesn't allow him to know password and login.
Is there anyway to reach authorization information by code?