近期系统中的webservice接口要上线
通过http://localhost:8080/webServices/testService?wsdl
走网关访问时,返回的<soap:address location>
是真实业务服务的ip:port
。因为我们只能暴露网关的ip和端口,需要将真实服务的ip和端口隐藏起来。
@Beanpublic Endpoint messagePoint() throws IOException {EndpointImpl endpoint = new EndpointImpl(this.springBus(), this.testService);endpoint.setPublishedEndpointUrl("http://yourdomain.com/yourServicePath");endpoint.publish("/testService");return endpoint;}
这时候我们在创建Endpoint的时候,可以通过配置setPublishedEndpointUrl()
展示wsdl文件中<soap:address location>
发布地址。
效果如下:
<wsdl:service name="testService">
<wsdl:port binding="tns:testServiceSoapBinding" name="TestServiceImplPort">
<soap:address location="http://yourdomain.com/yourServicePath"/>
</wsdl:port>
</wsdl:service>