BPEL变量初始化

时间:2009-12-27 01:26:59

标签: web-services soa bpel

是否可以在声明中初始化BPEL变量?如果是这样的话?

声明示例:

<variables>
    <variable name="offer" type="xsd:float"/>
    <variable name="response" type="xsd:string"/>
</variables> 

3 个答案:

答案 0 :(得分:4)

这是可能的。 BPEL 2.0允许在变量声明中直接使用from-spec。但是,并非所有BPEL引擎都实现此功能,例如, Apache ODE无法处理此类内联初始化。

以下代码段是有效的BPEL 2.0:

<variables>
    <variable name="response" type="xsd:string">
        <from>'TocToc'</from>
    </variable>
    <variable name="offer" type="xsd:float">
        <from>100</from>
    </variable>
</variables>

例如,请参阅[1]中的第121页和[1]的第8.1节(第45页)中的定义。

[1] http://docs.oasis-open.org/wsbpel/2.0/wsbpel-v2.0.pdf

答案 1 :(得分:1)

我们使用Oracle BPEL,它允许在bpel.xml文件中设置属性,如:

 <preferences>
    <property name="output_file" encryption="plaintext">logging.txt</property>
    <property name="expire_hours" encryption="plaintext">10</property>
    <property name="retry_count" encryption="plaintext">4</property>
 </preferences>

可以使用ora:getPreference(“varname”)

在代码中访问

这些也显示在BPEL控制台上,必要时可由管理员更改。

答案 2 :(得分:0)

经过一些谷歌搜索,阅读spec和示例......我认为在声明中初始化BPEL变量是不可能的......如果我们需要在流程序列中执行它:

...
    <variables>
        <variable name="response" type="xsd:string"/>
        <variable name="offer" type="xsd:float"/>
    </variables>
...
    <sequence>
        <receive createInstance="yes" .../>
...
        <assign name="init">
            <copy>
                <from>100</from>
                <to variable="offer"/>
            </copy>
            <copy>
                <from>'TocToc'</from>
                <to variable="response"/>
            </copy>
        </assign>
...