I'm trying to access a web service thru a webproxy and I can't get it working (without the proxy everything is working just fine). Here is my code:
WebProxy wp = new WebProxy(" true);
NetworkCredential nc = new NetworkCredential("myname", "mypassword"
wp.Credentials = nc;
ws = new MyWebservice();
ws.Proxy = wp;
Does anybody see anything wrong?
Thanks,
ZD
WebProxy wp = new WebProxy(" true);
NetworkCredential nc = new NetworkCredential("myname", "mypassword"
wp.Credentials = nc;
ws = new MyWebservice();
ws.Proxy = wp;
Does anybody see anything wrong?
Thanks,
ZD