WSO2 ESB迭代DSS响应(json数组)

时间:2016-05-31 19:33:26

标签: json wso2 wso2esb wso2dss

我有一个问题来迭代dss的调用响应。我有2台服务器

WSO2 ESB服务器(4.9.0) 安装了数据服务(4.3.4)功能的WSO2 Application Server(5.3.0)

我制作有效载荷

  <payloadFactory media-type="xml">
    <format>
      <p:valoresReport xmlns:p="ReportsDataService">
        <xs:uuid xmlns:xs="ReportsDataService">$1</xs:uuid>
      </p:valoresReport>
    </format>
    <args>
      <arg value="123456789"/>
    </args>
  </payloadFactory>

并通过端点进行呼叫

  <call blocking="true">
    <endpoint key="ReportsDataServiceEndPoint"/>
  </call>

回复是:

<ReportRowSet xmlns="ReportsDataService">
   <reportRow>
      <column1>1</column1>
      <column2>2</column2>
      <column3>3</column3>
   </reportRow>
   <reportRow>
      <column1>columna 1</column1>
      <column2>olumna 2</column2>
      <column3>columna 3</column3>
   </reportRow>
</ReportRowSet>

要读取响应,我将de messageType更改为json

  <property name="messageType" scope="axis2" type="STRING" value="application/json"/>

并使用json-eval获取值。

  <property expression="json-eval($.ReportRowSet.reportRow)" name="rows"
    scope="default" type="STRING"/>

我可以记录属性

  <log level="custom">
    <property expression="$ctx:rows" name="ROWS"/>
  </log>

输出:

[2016-05-31 16:21:38,489]  INFO - LogMediator ROWS = [{"column1":1,"column3":3,"column2":2},{"column1":"columna 1","column3":"columna 3","column2":"olumna 2"}]

但是当我尝试迭代行时,我不知道该怎么做(这种方式不起作用)

 <iterate continueParent="true" expression="$ctx:rows"
    id="MyIterator" sequential="true">
    <target>
      <sequence>
      ...

我也试过没有成功(没有改变消息类型):

  <iterate continueParent="true" expression="//ReportRowSet/reportRow"
    id="MyIterator" sequential="true">

是否采用正确的形式进行此集成和迭代。

我告诉你我的dss和序列:

ReportsDataService.dbs:[https://drive.google.com/open?id=0B44t8SdKZz79ellKVmpkM0t6Rmc]

GenerarReporteSequence.xml:[https://drive.google.com/open?id=0B44t8SdKZz79YlkxMnNnNm8weGs]

1 个答案:

答案 0 :(得分:1)

在迭代器调解器中尝试使用适当的命名空间,下面的示例

     <iterate xmlns:ns1="ReportsDataService" id="MyIterator" expression="//ns1:ReportRowSet/ns1:reportRow" sequential="true">
        <target>
           <sequence>
              <log level="custom">
                 <property name="col" expression="//ns1:column1"/>
              </log>
              <call>
                 <endpoint>
                    <http uri-template="http://endpoint.url"/>
                 </endpoint>
              </call>
           </sequence>
        </target>
     </iterate>