具体情况如下:
在外网的服务器上部署了一个Web Service,由于公司网络原因,仅能通过内网穿过代理服务器来访问外网的Web Service。在添加外网的Web Service时,出现用户名、密码、域提示窗口。
提示输入公司内网域的用户名和密码,正常添加引用。
然后在调用时出现了问题,报错信息为:
请求因 HTTP 状态 407 失败:Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied. )。
这表示您添加的WEB服务需要代理服务器认证,可按照以下方法解决:
//首先引用命名空间 using System.Net;
//定义一个代理类 WebProxy myProxy = new WebProxy("192.168.0.3:8080",true);
//在上面定义的myProxy代理对象中,有一个Credentials属性,它是 “获取或设置提交给代理服务器进行身份验证的凭据”
//设置代理对象的Credentials属性
myProxy.Credentials = new NetworkCredential("username "," password "," domainname ");
//然后将定义的代理对象赋给Web Service对象的Proxy代理属性即可
myService.Proxy = myProxy;
//作完这些设置就可以调用Web Service提供的接口了。 //其中的myService变量为一个实例化的Web Service对象。
|