如何使用wso2 ei更新soap响应命名空间值

问题描述 投票:0回答:2

我有一个代理服务来在wso2 ei上公开soap api,我需要用我的代理服务更新soap响应的命名空间值并返回另一个命名空间值。我已经尝试使用富集调解员,如下所示。

<property name="namespace"
               scope="default"
               type="STRING"
               value="http://tempuri-updated.org/"/>
      <enrich>
        <source clone="false" property="namespace" type="property"/>
        <target xmlns:ser="http://services.samples"
                xmlns:ns="http://org.apache.synapse/xsd"
                xpath="namespace-uri($body/*)/text()"/>
     </enrich>

我收到这个错误。

错误 - EnrichMediator无效的目标对象需要充实。

我的实际肥皂反应如下

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <soap:Body>
      <AddResponse xmlns="http://tempuri.org/">
         <AddResult>12</AddResult>
      </AddResponse>
   </soap:Body>
</soap:Envelope>

我的预期输出如下

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <soap:Body>
      <AddResponse xmlns="http://tempuri-updated.org/">
         <AddResult>12</AddResult>
      </AddResponse>
   </soap:Body>
</soap:Envelope>

欢迎您提出所有反馈意见

soap wso2 wso2esb wso2ei
2个回答
2
投票

富集调解员无法做到这一点。因为在与富集中介目标处理[1]相关的代码中,xpath表达式的解析结果应该是SOAPHeaderImpl,OMElement,OMText或OMAttribute之一。由于namespace-uri()只返回一个字符串值,因此要增加的目标变得无效。作为此用例的替代方法,我们可以使用XSLT介体进行XSLT转换。以下是我尝试过的示例XSL样式表。

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="@* | comment() | processing-instruction()">
    <xsl:copy/>
    </xsl:template>

   <xsl:template match="*">
       <xsl:element name="{local-name()}"
             namespace="http://tempuri-updated.org/">
       <xsl:apply-templates select="@* | node()"/>
       </xsl:element>
    </xsl:template>

在从EI发送响应之前,我们可以在XSLT介体中引用此样式表。新的命名空间将添加到正文中。


-1
投票

试试这个。

http://codertechblog.com/wso2-change-payload-soap-envelope-namespace/

<sequence name="seTestChangeNamespace" trace="disable" xmlns="http://ws.apache.org/ns/synapse">
(...)
<enrich>
<source type="body"/>
<target type="property" property="INPUT_MESSAGE"/>
</enrich>
<enrich>
<source type="inline">
<myns:Envelope xmlns:myns="http://schemas.xmlsoap.org/soap/envelope/">
<myns:Body/>
</myns:Envelope>
</source>
<target type="envelope"/>
</enrich>
<enrich>
<source type="property" property="INPUT_MESSAGE"/>
<target type="body"/>
</enrich>
(...)
</sequence>
© www.soinside.com 2019 - 2024. All rights reserved.