场景:1.10个.NET webservice站点2.客户端采用动态代理方式 访问webservice。3.NGINX做负载均衡。静态页面访问 测试正常(地址:http://localhost) 问题:1.动态代理访问时会先根据wsdl生成临时代理DLL2.但代理DLL当中的<soap12:address location="http://localhost:8882/WebService.asmx"/>地址是随机的生成时是那个地址 后面的代理就是那个地址 怎么修改这个地址了?
3 回答
猛跑小猪
TA贡献1858条经验 获得超8个赞
System.ServiceModel.BasicHttpBinding binding = new System.ServiceModel.BasicHttpBinding();
System.ServiceModel.EndpointAddress address = new System.ServiceModel.EndpointAddress("your nginx server address");
xxxSoapClient client = new xxxSoapClient(binding, address);
- 3 回答
- 0 关注
- 1208 浏览
添加回答
举报
0/150
提交
取消