Freitag, August 19, 2005
Print BPEL Variable to Stdout
To trace BPEL Variables you can use the java task:
<bpelx:exec>
CubeDOMElement element = (CubeDOMElement)getVariableData ("MyVariable", "payload","/ns2:myData");
System.out.println(doc.asXML());
</bpelx:exec>
I use following command to make the output visible:
tail -f C:\%ORACLE_HOME%\opmn\logs\OraBPEL~OC4J_BPEL~default_island~1
<bpelx:exec>
CubeDOMElement element = (CubeDOMElement)getVariableData ("MyVariable", "payload","/ns2:myData");
System.out.println(doc.asXML());
</bpelx:exec>
I use following command to make the output visible:
tail -f C:\%ORACLE_HOME%\opmn\logs\OraBPEL~OC4J_BPEL~default_island~1