在WCF
后面有一个第三方SOAP
firewall
服务托管证书身份验证。
在对此进行一些测试时,当我发出请求而没有将代理设置为null 时,
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(ServiceUrl);
webRequest.Headers.Add("SOAPAction", ServiceAcion);
webRequest.ContentType = "text/xml;charset=\"utf-8\"";
webRequest.Accept = "text/xml";
webRequest.Method = "POST";
webRequest.Proxy = null;
我收到403异常,但如果IPAddress
已经列入白名单,为什么IIS
拒绝连接。
代理的标准定义是
A proxy server is a server (a computer system or an application) that acts
as an intermediary for requests from clients seeking resources from other servers
请耐心等待这个愚蠢的问题。包装下发生了什么?