如何在 Oracle 的 bpelx:exec BPEL 扩展中使用数组
我创建了一个 BPEL 流程,其中有两个 java Embed Activity。并且我们在 BPEL 流程级别有 varibale(数组类型)。
以下是数组变量 xsd。
<?xml version="1.0" encoding="UTF-8"?>
<schema attributeFormDefault="unqualified"
elementFormDefault="qualified"
targetNamespace="http://xmlns.oracle.com/RegistrationUpload_jws/RegistrationUpload"
xmlns="http://www.w3.org/2001/XMLSchema">
<element name="groupIDArray">
<complexType>
<sequence>
<element name="groupId" type="string" maxOccurs="unbounded"/>
</sequence>
</complexType>
</element>
</schema>
我的要求是我想在 Java Embed 活动的这个数组中添加变量,然后我将在下一个 Java Embed 活动中使用相同的填充数组。
请给我建议一些要点。 如果可能的话,任何示例代码请参阅链接。 谢谢
I have created a BPEL process in which there are two java Embed Activity.and we have on varibale(array type) at BPEL process level.
following is the array variable xsd.
<?xml version="1.0" encoding="UTF-8"?>
<schema attributeFormDefault="unqualified"
elementFormDefault="qualified"
targetNamespace="http://xmlns.oracle.com/RegistrationUpload_jws/RegistrationUpload"
xmlns="http://www.w3.org/2001/XMLSchema">
<element name="groupIDArray">
<complexType>
<sequence>
<element name="groupId" type="string" maxOccurs="unbounded"/>
</sequence>
</complexType>
</element>
</schema>
My requirement is I want to add variables in this array on Java Embed activity and then I will use the same filled array in next Java Embed activity.
Please suggest me some points.
any sample code if possible please refer the link.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你到底有什么问题?
大功告成,变量已更新。
What's you problem, exactly?
You're done, the variable is updated.