如何在 Oracle 的 bpelx:exec BPEL 扩展中使用数组

发布于 2024-11-18 13:08:12 字数 792 浏览 5 评论 0原文

我创建了一个 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技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人海汹涌 2024-11-25 13:08:12

你到底有什么问题?

  • 在调用 Java Embedded 之前,调用 getVariable(),这将为您提供作为 DOM 元素的变量(数组)。
  • 将其传递给 Java 代码。
  • 将其解析为数据结构(JAXB 最适合它)。
  • 根据需要添加/删除/更新元素。
  • 将数据结构序列化回 DOM。
  • 从 Java 返回它。
  • 调用 setVariable() 将 DOM 存储回原始变量中。

大功告成,变量已更新。

What's you problem, exactly?

  • Before calling Java Embedded, call getVariable(), which will give you the variable (array) as a DOM Element.
  • Pass it down to Java code.
  • Parse it there into a data structure (JAXB is best for it).
  • Add/remove/update elements as you wish.
  • Serialize the data structure back to DOM.
  • Return it from Java.
  • Call setVariable() to store the DOM back into the original variable.

You're done, the variable is updated.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文