1 Reply Latest reply on Sep 1, 2006 2:26 AM by kukeltje

    Backing-bean Outjection - jBPM Injection

      Hi All,

      I'm having problems with Outjection / Injection from a Backing-bean that creates a jBPM process which contains a jBPM Decision Handler.

      My backing-bean has the following member:

       @Out(value="xml", scope=ScopeType.BUSINESS_PROCESS, required=false)
       String theXml = "aaa";
      


      My jBPM process gets created correctly by an @CreateProcess annotation in my backing bean. My problem is that I have a DecisionHandler within my process that needs the value of theXml. As I understand it, the DecisionHandler should have access to it using:

       @In(value="xml", scope=ScopeType.BUSINESS_PROCESS)
       String xml;
      


      But the xml is not injected at all. Is there something I am missing? I thought the outjection/injection would be simple...

      Thanks!