1

当我创建代理服务使用自定义代理时,我想 在 WSDL 的绑定中将主机名从"http://localhost:8280/services/AppointWebServiceProxy.AppointWebServiceProxyHttpSoap11Endpoint"更改 为:"http://10.10.11.176:8280/services/AppointWebServiceProxy.AppointWebServiceProxyHttpSoap11Endpoint"

 <wsdl:port name="AppointWebServiceProxyHttpSoap11Endpoint" binding="tns:AppointWebServiceProxySoap11Binding">
 <soap:address location="http://localhost:8280/services/AppointWebServiceProxy.AppointWebServiceProxyHttpSoap11Endpoint"/> 
 </wsdl:port>

我已经更改了<HostName>10.10.11.176</HostName>carbon.xml 并更改了<parameter name="bind-address" locked="false">10.10.11.176</parameter> axis2.xml 但所有这些都不起作用,我该怎么办?

4

1 回答 1

4

要更改您的服务发布的 url,您必须编辑参数

<parameter name="WSDLEPRPrefix" locked="false">http://hostname os IP address</parameter>

到axis2.xml文件中所需的值,Transport In (Listeners)部分

问候

于 2012-06-08T07:44:31.710 回答