WSO2 ESB as a Pure Pass-Through WSDL Server with All Original Operations

拈花ヽ惹草 提交于 2019-12-06 15:58:32

You need to specify 'Publish WSDL' options and create the WSDL accordingly. If Publish WSDL options are not specified it will show only the mediate operation.

Read the following docs to know more about this.

http://docs.wso2.org/wiki/display/ESB470/Adding+a+Proxy+Service#AddingaProxyService-PublishWSDLOptions

http://maharachchi.blogspot.com/2013/07/publishwsdl-option-in-wso2-esb-explained.html


EDIT - You can specify the format attribute as SOAP 1.2 in the endpoint in your proxy configuration to convert all requests to SOAP 1.2. Sample Proxy config is as follows

<proxy xmlns="http://ws.apache.org/ns/synapse" name="EchoProxy" transports="https,http" statistics="disable" trace="disable"
   startOnLoad="true">
<target>
  <outSequence>
     <send/>
  </outSequence>
  <endpoint>
     <address uri="http://localhost:8280/services/echo" format="soap12"/>
  </endpoint>
</target>
<publishWSDL uri="http://localhost:8282/services/echo?wsdl"/>
<description/>
</proxy>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!