0

我将服务端点作为对 WSO2 esb 的输入 SOAP 请求,基于将有效负载数据发送到该端点并响应客户端的需要。请告知如何将有效负载发送到该端点。我尝试了 Header 调解器,但没有运气。以下是到达 ESB 的 SOAP XML 请求,该请求在属性元素下具有服务端点引用。

<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>

4

1 回答 1

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/>
于 2013-07-21T20:57:09.523 回答