-1

Proxy Service着信 xml を他の構造に変換したい in パイプラインを作成しました。お気に入り

<body>
  <prices>
      <price>$100</price>
  </prices>
  <prices>
      <price>E100</price>
  </prices>
</body>

に変換する必要があります

<body>
  <prices>
      <price>$100</price>
      <type>USD</type>
  </prices>
  <prices>
      <price>E100</price>
      <type>UERO</type>
  </prices>
</body>

私が選択したパイプライン段階からAdd Action -> Flow Control -> For Each

そしてbody/prices/*、Xquery ビルダーで選択しました。

pricesただし、タグは処理されません。

「変数の合計数」totalCountは常にゼロです。

4

1 に答える 1

0

body/prices/* の代わりに body/prices/price を選択

于 2013-09-25T04:22:19.490 に答える