nginx .net webservice 无法负载均衡

场景:
1.10个.NET webservice站点

2.客户端采用动态代理方式   访问webservice。

3.NGINX做负载均衡。静态页面访问  测试正常(地址:http://localhost)

 

问题:

1.动态代理访问时会先根据wsdl生成临时代理DLL

2.但代理DLL当中的<soap12:address location="http://localhost:8882/WebService.asmx"/>
地址是随机的生成时是那个地址 后面的代理就是那个地址  怎么修改这个地址了?


牧羊人nacy
浏览 1209回答 3
3回答

猛跑小猪

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);
打开App,查看更多内容
随时随地看视频慕课网APP