Hi,

please check the code of the clases From, To, ToFrom, and the methods
AssignGenerator.compileTo(...) and AssignGenerator.assignFrom(...) as
reference.

HTH,
  Tammo

On 19.01.2010 17:21, Michele wrote:
> Hello, I have to analize the <bpel:assign> in a BPEL process. In particular
> I have to distinguish the three kind of  <copy> "Fixed value to variable",
> "Expression to variable", "Variable to Variable". I need to select the third
> one and in specific to access to CDATA value.
> This is the code:
> 
> AssignActivity assign = ((AssignActivity) act);
>                         java.util.List<Copy> copies= assign.getCopies();
>                         Iterator<Copy> itr = copies.iterator();
>                         while(itr.hasNext()) {
>                             Copy cp = (Copy) itr.next();
>                             //I don't know how to go on
>                         }
> 
> thanks.
> 


-- 
Tammo van Lessen - http://www.taval.de

Reply via email to