uninitializedVariable has been created by Maciej Szefler (Apr 23, 2007).

Content:

Fault Name

bpel:uninitializedVariable – use of uninitialized variable data fault

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>

Reply via email to