wso2 ESB:分割/聚集模式 - 单一响应

时间:2013-07-27 22:17:48

标签: wso2 aggregate esb mediator

不是问题 ,而是 回答 。我是wso2 ESB的新手,并希望将测试运行实现拆分/收集EIP作为POC的一部分。 我按照我找到的示例,立即得到了一个返回单个响应的工作配置。然而,要获得所有回复,需要花费相当多的时间才能弄明白。大多数给定的样本似乎产生了相同的意外结果。我希望如果你遇到同样的问题,这些行对你有帮助。

设置

我使用 soapUI示例服务 (搜索操作)作为服务后端。我向代理服务器发送了搜索 两个项 的组合消息(请参阅下面的文章) 迭代介体拆分 消息并将其转发到调用soapUI模型的端点。 聚合介体 会等待所有响应并尝试将其放入一条结果消息中。

问题

虽然拆分器工作正常,但聚合器只返回 一个结果元素 而不是预期的元素列表。所有日志显示一切正常,几个请求被发送到相应的端点,但仍然只有最终响应中返回的第一个响应。

解决方案

在将代理的日志级别设置为TRACE之后,我意识到聚合器工作得很好,只是它创建了一条并非真正符合SOAP的消息。所有 汇总元素 都直接在肥皂正文 下添加 。所以问题是如何在body和result标签之间添加一个根元素。我首先尝试了XSLT,但它也只能读取正文的第一个子元素。最后,我发现了一些深深隐藏的提示 使用 富集调解员 (或者更确切地说是一系列)做了伎俩。 以下列表说明了大多数示例中都没有的配置部分(如下所示)。

  1. 首先使用Enrich将所有相关项目捕获到属性中
  2. 忘掉当前的消息 - 重写完整的信封 主体仅包含新的有效负载根元素
  3. 将存储在属性中的元素附加到新的有效负载根目录。
  4. 如果需要,将soap标头捕获到属性中并将其附加到新的msg中(不在下面的配置中)
  5. 人工制品

    演示请求

    <body>
       <sam:multisearch xmlns:sam="http://www.example.org/sample/">
          <sam:search>
             <sessionid>123</sessionid>
             <searchstring>Item 1</searchstring>
          </sam:search>
          <sam:search>
             <sessionid>123</sessionid>
             <searchstring>Item 2</searchstring>
          </sam:search>
       </sam:multisearch>
    </body>
    

    配置

    <proxy xmlns="http://ws.apache.org/ns/synapse" name="test.multisearch" transports="https,http" statistics="enable" trace="enable" startOnLoad="true">
       <target>
          <inSequence>
             <iterate xmlns:sam="http://www.example.org/sample/" expression="//sam:multisearch/sam:search">
                <target>
                   <sequence>
                      <send>
                         <endpoint key="soapUI_Mockup"/>
                      </send>
                   </sequence>
                </target>
             </iterate>
          </inSequence>
          <outSequence>
             <aggregate>
                <completeCondition>
                   <messageCount min="-1" max="-1"/>
                </completeCondition>
                <onComplete xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sam="http://www.example.org/sample/" expression="//sam:searchResponse">
                   <enrich>
                      <source clone="true" xpath="$body//item"/>
                      <target type="property" property="ResultItems"/>
                   </enrich>
                   <log level="custom">
                      <property name="ResultItems" expression="get-property('ResultItems')"/>
                   </log>
                   <enrich>
                      <source type="inline" clone="true">
                         <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">                        
                            <soapenv:Header/>                        
                            <soapenv:Body>                           
                               <sam:GenericDataResponse/>                        
                            </soapenv:Body>                     
                         </soapenv:Envelope>
                      </source>
                      <target type="envelope"/>
                   </enrich>
                   <enrich>
                      <source type="property" clone="true" property="ResultItems"/>
                      <target action="child" xpath="//sam:GenericDataResponse"/>
                   </enrich>
                   <send/>
                </onComplete>
             </aggregate>
          </outSequence>
       </target>
       <description></description>
    </proxy>
    

    最后一个问题

    如果有人可能会提示我某些文档或者给我一些有关聚合调解器的correlateOn属性的工作配置,我真的很感激。

2 个答案:

答案 0 :(得分:1)

您需要做的是,提及迭代器介体中的任何id(请参阅iterator mediator docs),并在聚合器介体中引用相同的id作为相关ID。而已。 -

答案 1 :(得分:1)

聚合介体支持使用单个父元素围绕响应的enclosingElementProperty属性。这简化了您的丰富技巧:

<property name="ROOT" scope="default">
    <root:rootelement xmlns:root="www.wso2esb.com"/>
</property>
<aggregate>
    <completeCondition>
        <messageCount min="-1" max="-1"/>
    </completeCondition>
    <onComplete expression="//dummy" enclosingElementProperty="ROOT">
    </onComplete>
</aggregate>