我的输入请求为:
<body>
<p:UpdateID xmlns:p="http://tempuri.org">
<!--Exactly 1 occurrence-->
<xs:newid xmlns:xs="http://tempuri.org">NewID</xs:newid>
<!--1 or more occurrences-->
<xs:oldid xmlns:xs="http://tempuri.org">OldID_001</xs:oldid>
<xs:oldid xmlns:xs="http://tempuri.org">OldID_002</xs:oldid>
</p:UpdateID>
</body>
我编写了一个代理服务,但我不能作为:
<proxy xmlns="http://ws.apache.org/ns/synapse" name="UpdateID" transports="https,http" statistics="disable" trace="disable" startOnLoad="true">
<target>
<inSequence>
<iterate xmlns:xs="http://tempuri.org" id="Iterate1" expression="count(//xs:oldid)">
<target>
<sequence>
<property name="newid" expression="//xs:newid" scope="default" type="STRING"/>
<property name="oldid" expression="//xs:oldid" scope="default" type="STRING"/>
<payloadFactory>
<format>
<p:UpdateID xmlns:p="http://tempuri.org">
<xs:newid>$1</xs:newid>
<xs:oldid>$2</xs:oldid>
</p:UpdateID>
</format>
<args>
<arg expression="get-property('newid')"/>
<arg expression="get-property('oldid')"/>
</args>
</payloadFactory>
<send>
<endpoint key="UpdateEP"/>
</send>
</sequence>
</target>
</iterate>
</inSequence>
</target>
<publishWSDL uri="http://xyz:9764/services/Update_DataService?wsdl"/>
<description></description>
</proxy>
现在我的问题是如何获得 oldid 的计数,以便我可以从 0 迭代到 oldid 的计数,类似于 for 循环。 其次,如何将 oldid 值一一分配给有效负载。请帮忙。提前致谢