2013-07-30 2 views
-1

파이프 라인에 Proxy Service을 생성했습니다. 들어오는 xml을 다른 구조로 변환하려고했습니다.Oracle Service Bus Console에서 Xml 노드를 통해 루프하는 방법 - Xquery?

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

이 pipline 단계에서

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

로 변환해야 하는가처럼 나는

Add Action -> Flow Control -> For Each을 선택 그리고 나는 XQuery를 빌더에서 body/prices/*을 선택했습니다.

prices 태그 중 아무 것도 처리되지 않습니다.

"총계가 가변적"이됩니다. totalCount은 항상 0입니다.

답변

0

신체/가격/가격 대신 신체/가격/*

관련 문제