我创造
SOAP
CXF
:
@Bean
Endpoint endpoint() {
EndpointImpl endpoint = new EndpointImpl(bus, myEndpoint);
endpoint.publish(path);
return endpoint;
}
当我在浏览器中打开url时,比如:
http://localhost:6666/app/ws?wsdl
<soap:address location="http://localhost:6666/app/ws"/>
但当我用外部URL打开时:
http://172.16.105.134:6666/app/ws?wsdl
<soap:地址位置="http://localhost:6666/app/ws“/>
一般来说,我总是得到我第一次打开的url。
但是我的任务总是返回请求它的url。我该怎么做?