1 Reply Latest reply on Mar 16, 2006 12:21 AM by gavin.king

    Seam and JBPM Process Management.

      Hi All

      I have been trying to use JBPM process flows (rather than page flows) and process scope variables.

      I started a process and outjected the variable succesfully (verfied in database).

      I then tried to inject the variable into a latter step:

      However when I had the following code to inject it it did not work (returned null due to finding the variable in the removals map).

      @In(required=false,scope=ScopeType.BUSINESS_PROCESS)
      @Out(required=false,scope=ScopeType.BUSINESS_PROCESS)
      private Customer cust;
      


      but when I have the following, it works.

      @In(required=false,scope=ScopeType.BUSINESS_PROCESS)
      private Customer cust;
      


      Is what i was doing in the first case conceptually wrong, or is this a use case that has never been considered?

      Thanks all,

      James