This project has retired. For details please refer to its Attic page.
Apache ODE – uninitializedVariable

uninitializedVariable

Fault Name

bpel:uninitializedVariable -- {excerpt} use of uninitialized variable data {excerpt}

Description

This fault is thrown when an attempt is made to reference or use the data in a variable that has not been intiialized.

Examples

The following BPEL code generates this fault in the assign activity:

<scope>
  <variable name="foo" type="xsd:string" />
  <variable name="bar" type="xsd:string" />
  <assign>
    <copy>
       <from variable="foo" />
       <to variable="bar" />
    </copy>
  </assign>
</scope>

See Also

<[assign](assign.html)>