我将服务端点作为输入SOAP请求提供给WSO2 esb,基于 在那需要将有效载荷数据发送到该端点并响应 客户。请告知如何将有效负载发送到该端点。我试过了 头部调解员,但没有运气。以下是SOAP XML请求 到属性元素下的服务端点引用的ESB。
<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope"> <soapenv:Body> <resources> <resource>
<properties> <property name="location" value="http://localhost:8280/services/echo.echoHttpSoap11Endpoint"/> </properties> </resource> </resources> </soapenv:Body> </soapenv:Envelope>
答案 0 :(得分:1)
首先使用表达式“// properties / property / @ value”检索地址值。然后设置标头介体的To地址并发送消息。
<property name="address" expression="//properties/property/@value"/>
<header name="To" expression="get-property('address')"/>
<payloadFactory>
<format>
<p:echoInt xmlns:p="http://echo.services.core.carbon.wso2.org">
<in xmlns="">$1</in>
</p:echoInt>
</format>
<args>
<arg value="1"/>
</args>
</payloadFactory>
<send/>