我想使用XSD创建一个数组,并在我的BPEL(Apache ODE)中使用相同的数组并将值插入其中。
XSD:
<complexType name="datesOfActivation">
<sequence>
<element name="dates" type="date" maxOccurs="unbounded" minOccurs="0"> </element>
</sequence>
</complexType>
<element name="TaskDates" type="tns:datesOfActivation">
</element>
以下是我尝试在其中插入值的方法(BPEL):
<bpel:copy>
<bpel:from>$date</bpel:from>
<bpel:to>$TaskDates/tns:dates[$counter]/text()</bpel:to>
</bpel:copy>
计数器是一个以1开头的变量.date是一个简单的变量,其值要传递给数组。当我执行它时,我最终只得到数组中的一个值。 (我增加了计数器值)
我做错了什么?
答案 0 :(得分:0)
请尝试使用 while 说明。
<while condition="bpws:getVariableData('var1', 'TestPart') < 10">
<assign>
<copy>
<from expression="bpws:getVariableData('var1', 'TestPart') + 1"/>
<to variable="var1" part="TestPart"/>
</copy>
</assign>
</while>