Pedantic
Pedantic

Reputation: 1378

how to create/use variables in BPEL process using jdeveloper

I am creating simple BPEL process using Jdeveloper,and want to include all features of BPEL on small level.

when I am using assign attribute and creating expression then setting the input variables with concatenation ((11002) as input then AO11002 will be output), and then setting it in same variable(inout variable). and on next step when I am using Java Embed activity and trying to get the same variable, its showing me the null only,

please help me and guide me for how to create varibles and use in the application also. thanks in advance...

Upvotes: 1

Views: 3624

Answers (1)

ZeissS
ZeissS

Reputation: 12135

you can add variables by clicking on '(x)' at the left side of a block. The tooltip should guide you to the right dialog. To access a variable in the java activity, use the 'setVariableData()' and 'getVariableData()' functions.

Upvotes: 1

Related Questions