如何在wso2 esb中删除肥皂信封

时间:2016-01-13 18:19:25

标签: wso2 wso2esb

我正在使用wso2esb 4.8.0,我正在尝试连接我的遗留系统,它可以接受使用post方法的休息呼叫。

我发送给他们但肥皂信封是由wso2添加的。 当前消息:

<?xml version='1.0' encoding='UTF-8'?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.comapny.org/" xmlns:env="http://com.comany.inn/Envelope"><soap:Header xmlns:p="http://webservices.usedin.com/PService">

   </soap:Header><soap:Body>
      <requested id="12345">
   <authen login="username" password="password">
      <parm name="COMPANY" value="myname"/>
   </authen>
   <actionReq production="doctor" id="1234" type="TINGS">
      <parm name="name" value="12345"/>
   </actionReq>
</requested>
   </soap:Body></soap:Envelope>

预期的一个:

     <requested id="12345">
   <authen login="username" password="password">
      <parm name="COMPANY" value="myname"/>
   </authen>
   <actionReq production="doctor" id="1234" type="TINGS">
      <parm name="name" value="12345"/>
   </actionReq>
</requested>

由于这个休息,我不能使用格式也像肥皂服务中的“format = pox”。

我的代码是这样的。

                        

</xquery>
            <send>
              <http uri-template="http://******/webservices/***.php" method="post">
            </send>

我是否需要添加任何属性来删除esb out请求的soap信封。

1 个答案:

答案 0 :(得分:3)

尝试在发送中介之前添加此属性:

<property name="messageType" value="application/xml" scope="axis2"/>