使用WSO2 ESB时如何更改WSDL中的绑定主机名?

时间:2012-06-08 04:44:11

标签: wsdl wso2 wso2esb

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

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

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

1 个答案:

答案 0 :(得分:4)

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

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

到axis2.xml文件所需的值,转入(监听器)

部分

此致