bpel:uninitializedVariable – use of uninitialized variable data
This fault is thrown when an attempt is made to reference or use the data in a variable that has not been intiialized.
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>
<assign>
