5 Replies Latest reply on Dec 14, 2006 5:46 PM by juangiovanolli

    SEAM and JBPM

    heitmanm

      I have got a problem with jbpm-integration into seam. My application is very close to the dvd-seam sample. It was no problem to create the process but when I try to execute a task of my process-definition I get the message "Task null not found" on my xhtml-page.

      Perhaps someone have any idea that can be helpful for me?

      I will list some codepieces here for better understanding....

      I have assigned a task to a user...

      <h:dataTable value="#{pooledTaskInstanceList}"
       var="task"
       styleClass="dvdtable"
       headerClass="dvdtablehead"
       rowClasses="dvdtableodd,dvdtableeven"
       columnClasses="dvdtablecol">
       <h:column>
      
       </h:column>
       <h:column>
       <f:facet name="header">Task</f:facet>
       <h:outputText value="#{task.description}" />
       </h:column>
      
       <h:column>
       <s:link
      action="#{pooledTask.assignToCurrentActor}" taskInstance="#{task}"
       value="Assign"/>
       </h:column>
       </h:dataTable>
      
      
      
      now you should accept the task on an other xhtml.

      <h:dataTable value="#{taskInstanceListForType['approve']}"
       var="task"
       styleClass="dvdtable"
       headerClass="dvdtablehead"
       rowClasses="dvdtableodd,dvdtableeven"
       columnClasses="dvdtablecol">
       <h:column>
       <f:facet name="header">credit Id</f:facet>
       #{task.variables['creditId']}
       </h:column>
      
      
       <h:column>
       <s:link action="#{accept.viewTask}"
      taskInstance="#{task}"
       value="Review"/>
       </h:column>
       </h:dataTable>
      


      Here the content of the accept-page.....
      <h:form>
       <h:commandButton action="#{accept.reject}"
      value="Reject credit" />
       <h:commandButton action="#{accept.accept}"
      value="Accept Credit" />
       </h:form>
      
      ....

      Using the commandButton lets the message "Task null not found" appear.

      Accept-Class

      @Stateful
      @Name("accept")
      public class AcceptAction
       implements Accept,
       Serializable
      {
       @In(value="currentUser")
       Admin admin;
      
       @PersistenceContext(type=PersistenceContextType.EXTENDED)
       EntityManager em;
      
       @Out(scope=ScopeType.CONVERSATION)
       Credit credit;
      
       @In
       Long creditId;
      
       @BeginTask
       public String viewTask() {
       .....
       return "accept";
       }
      
       @EndTask(transition="approve")
       public String accept() {
       .....
       return "admin";
       }
      
       @EndTask(transition="reject")
       public String reject() {
       ....
       return "admin";
       }
      
       @Destroy
       @Remove
       public void destroy() {}
      }


      Processdefinitions.

      <?xml version="1.0"?>
      
      <process-definition name="OrderManagement">
      
       <start-state name="start">
       <transition to="decide"/>
       </start-state>
      
       <decision name="decide" expression="#{orderApproval.howLargeIsOrder}">
       <transition name="large order" to="approval"/>
       <transition name="small order" to="process"/>
       </decision>
      
       <task-node name="approval" end-tasks="true">
       <task name="approve" description="Review order">
       <assignment pooled-actors="reviewers"/>
       </task>
       <transition name="cancel" to="cancelled"/>
       <transition name="approve" to="process"/>
       <transition name="reject" to="cancelled"/>
       </task-node>
      
       <task-node name="process">
       <task name="ship" description="Ship order">
       <assignment pooled-actors="#{shipperAssignment.pooledActors}" />
       </task>
       <transition name="shipped" to="complete">
       <action expression="#{afterShipping.log}"/>
       </transition>
       </task-node>
      
       <end-state name="complete"/>
       <end-state name="cancelled"/>
      
      </process-definition>


        • 1. Re: SEAM and JBPM
          gavin.king

          Show the stack trace.

          • 2. Re: SEAM and JBPM
            heitmanm

            Thank you for your fast reaction but I do not get an exception.....here is the whole server-log

            I cannot find the difference to the seam-samples but perhaps I'm a little bit blind....

            22:07:50,640 INFO [ConnectionFactoryBindingService] Bound ConnectionManager 'jboss.jca:service=DataSourceBinding,name=carcreditDatasource' to JNDI name 'java:carcreditDatasource'
            22:07:50,687 INFO [EARDeployer] Init J2EE application: file:/C:/seam-dev/jboss-4.0.4.GA/server/default/deploy/carcredit.ear
            22:07:52,031 INFO [Ejb3DescriptorHandler] adding class annotation org.jboss.annotation.internal.DefaultInterceptorMarker to de.heitmann.seam.credit.AcceptAction org.jboss.annotation.internal.DefaultInterceptorMarkerImpl@c81672
            22:07:52,062 INFO [Ejb3DescriptorHandler] adding class annotation org.jboss.annotation.internal.DefaultInterceptorMarker to de.heitmann.seam.credit.CheckoutAction org.jboss.annotation.internal.DefaultInterceptorMarkerImpl@1a24c3f
            22:07:52,062 INFO [Ejb3DescriptorHandler] adding class annotation org.jboss.annotation.internal.DefaultInterceptorMarker to de.heitmann.seam.credit.CreateCreditRequestAction org.jboss.annotation.internal.DefaultInterceptorMarkerImpl@1ee026e
            22:07:52,062 INFO [Ejb3DescriptorHandler] adding class annotation org.jboss.annotation.internal.DefaultInterceptorMarker to de.heitmann.seam.credit.EditCustomerAction org.jboss.annotation.internal.DefaultInterceptorMarkerImpl@1d857eb
            22:07:52,078 INFO [Ejb3DescriptorHandler] adding class annotation org.jboss.annotation.internal.DefaultInterceptorMarker to de.heitmann.seam.credit.LoginAction org.jboss.annotation.internal.DefaultInterceptorMarkerImpl@1ef63f9
            22:07:52,078 INFO [Ejb3DescriptorHandler] adding class annotation org.jboss.annotation.internal.DefaultInterceptorMarker to de.heitmann.seam.credit.ShipAction org.jboss.annotation.internal.DefaultInterceptorMarkerImpl@31dcf0
            22:07:52,109 INFO [Ejb3Deployment] EJB3 deployment time took: 94
            22:07:52,109 INFO [JmxKernelAbstraction] installing MBean: persistence.units:ear=carcredit.ear,jar=carcredit.jar,unitName=userDatabase with dependencies:
            22:07:52,109 INFO [JmxKernelAbstraction] jboss.jca:name=carcreditDatasource,service=ManagedConnectionFactory
            22:07:52,125 INFO [Ejb3Configuration] found EJB3 Entity bean: de.heitmann.seam.credit.Actor
            22:07:52,125 INFO [Ejb3Configuration] found EJB3 Entity bean: de.heitmann.seam.credit.Admin
            22:07:52,125 INFO [Ejb3Configuration] found EJB3 Entity bean: de.heitmann.seam.credit.Car
            22:07:52,125 INFO [Ejb3Configuration] found EJB3 Entity bean: de.heitmann.seam.credit.Credit
            22:07:52,125 INFO [Ejb3Configuration] found EJB3 Entity bean: de.heitmann.seam.credit.Customer
            22:07:52,140 INFO [Ejb3Configuration] found EJB3 Entity bean: de.heitmann.seam.credit.User
            22:07:52,140 WARN [Ejb3Configuration] Persistence provider caller does not implements the EJB3 spec correctly. PersistenceUnitInfo.getNewTempClassLoader() is null.
            22:07:52,140 INFO [Configuration] Reading mappings from resource: META-INF/orm.xml
            22:07:52,140 INFO [Ejb3Configuration] [PersistenceUnit: userDatabase] no META-INF/orm.xml found
            22:07:52,140 INFO [AnnotationBinder] Binding entity from annotated class: de.heitmann.seam.credit.Actor
            22:07:52,140 INFO [EntityBinder] Bind entity de.heitmann.seam.credit.Actor on table ACTORS
            22:07:52,140 INFO [AnnotationBinder] Binding entity from annotated class: de.heitmann.seam.credit.User
            22:07:52,140 INFO [EntityBinder] Bind entity de.heitmann.seam.credit.User on table USERS
            22:07:52,156 INFO [AnnotationBinder] Binding entity from annotated class: de.heitmann.seam.credit.Admin
            22:07:52,156 INFO [AnnotationBinder] Binding entity from annotated class: de.heitmann.seam.credit.Car
            22:07:52,156 INFO [EntityBinder] Bind entity de.heitmann.seam.credit.Car on table Car
            22:07:52,156 INFO [AnnotationBinder] Binding entity from annotated class: de.heitmann.seam.credit.Credit
            22:07:52,156 INFO [EntityBinder] Bind entity de.heitmann.seam.credit.Credit on table Credit
            22:07:52,156 INFO [AnnotationBinder] Binding entity from annotated class: de.heitmann.seam.credit.Customer
            22:07:52,203 INFO [ConnectionProviderFactory] Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
            22:07:52,203 INFO [InjectedDataSourceConnectionProvider] Using provided datasource
            22:07:52,203 INFO [SettingsFactory] RDBMS: HSQL Database Engine, version: 1.8.0
            22:07:52,203 INFO [SettingsFactory] JDBC driver: HSQL Database Engine Driver, version: 1.8.0
            22:07:52,203 INFO [Dialect] Using dialect: org.hibernate.dialect.HSQLDialect
            22:07:52,218 INFO [TransactionFactoryFactory] Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
            22:07:52,218 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
            22:07:52,218 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
            22:07:52,218 INFO [SettingsFactory] Automatic flush during beforeCompletion(): disabled
            22:07:52,218 INFO [SettingsFactory] Automatic session close at end of transaction: disabled
            22:07:52,218 INFO [SettingsFactory] JDBC batch size: 15
            22:07:52,218 INFO [SettingsFactory] JDBC batch updates for versioned data: disabled
            22:07:52,218 INFO [SettingsFactory] Scrollable result sets: enabled
            22:07:52,218 INFO [SettingsFactory] JDBC3 getGeneratedKeys(): disabled
            22:07:52,218 INFO [SettingsFactory] Connection release mode: auto
            22:07:52,218 INFO [SettingsFactory] Default batch fetch size: 1
            22:07:52,218 INFO [SettingsFactory] Generate SQL with comments: disabled
            22:07:52,218 INFO [SettingsFactory] Order SQL updates by primary key: disabled
            22:07:52,218 INFO [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
            22:07:52,218 INFO [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
            22:07:52,218 INFO [SettingsFactory] Query language substitutions: {}
            22:07:52,218 INFO [SettingsFactory] Second-level cache: enabled
            22:07:52,218 INFO [SettingsFactory] Query cache: enabled
            22:07:52,218 INFO [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
            22:07:52,218 INFO [SettingsFactory] Optimize cache for minimal puts: disabled
            22:07:52,218 INFO [SettingsFactory] Structured second-level cache entries: disabled
            22:07:52,218 INFO [SettingsFactory] Query cache factory: org.hibernate.cache.StandardQueryCacheFactory
            22:07:52,218 INFO [SettingsFactory] Echoing all SQL to stdout
            22:07:52,218 INFO [SettingsFactory] Statistics: disabled
            22:07:52,218 INFO [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
            22:07:52,218 INFO [SettingsFactory] Default entity-mode: pojo
            22:07:52,218 INFO [SessionFactoryImpl] building session factory
            22:07:52,265 INFO [SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
            22:07:52,281 INFO [SchemaExport] Running hbm2ddl schema export
            22:07:52,281 INFO [SchemaExport] exporting generated schema to database
            22:07:52,281 INFO [SchemaExport] Executing import script: /import.sql
            22:07:52,281 INFO [SchemaExport] schema export complete
            22:07:52,281 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
            22:07:52,281 INFO [UpdateTimestampsCache] starting update timestamps cache at region: org.hibernate.cache.UpdateTimestampsCache
            22:07:52,281 INFO [StandardQueryCache] starting query cache at region: org.hibernate.cache.StandardQueryCache
            22:07:52,328 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=carcredit.ear,jar=carcredit.jar,name=AcceptAction,service=EJB3 with dependencies:
            22:07:52,328 INFO [JmxKernelAbstraction] persistence.units:ear=carcredit.ear,jar=carcredit.jar,unitName=userDatabase
            22:07:52,343 INFO [EJBContainer] STARTED EJB: de.heitmann.seam.credit.AcceptAction ejbName: AcceptAction
            22:07:52,343 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=carcredit.ear,jar=carcredit.jar,name=CheckoutAction,service=EJB3 with dependencies:
            22:07:52,343 INFO [JmxKernelAbstraction] persistence.units:ear=carcredit.ear,jar=carcredit.jar,unitName=userDatabase
            22:07:52,375 INFO [EJBContainer] STARTED EJB: de.heitmann.seam.credit.CheckoutAction ejbName: CheckoutAction
            22:07:52,375 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=carcredit.ear,jar=carcredit.jar,name=CreateCreditRequestAction,service=EJB3 with dependencies:
            22:07:52,375 INFO [JmxKernelAbstraction] persistence.units:ear=carcredit.ear,jar=carcredit.jar,unitName=userDatabase
            22:07:52,406 INFO [EJBContainer] STARTED EJB: de.heitmann.seam.credit.CreateCreditRequestAction ejbName: CreateCreditRequestAction
            22:07:52,406 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=carcredit.ear,jar=carcredit.jar,name=EditCustomerAction,service=EJB3 with dependencies:
            22:07:52,406 INFO [JmxKernelAbstraction] persistence.units:ear=carcredit.ear,jar=carcredit.jar,unitName=userDatabase
            22:07:52,421 INFO [EJBContainer] STARTED EJB: de.heitmann.seam.credit.EditCustomerAction ejbName: EditCustomerAction
            22:07:52,421 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=carcredit.ear,jar=carcredit.jar,name=LoginAction,service=EJB3 with dependencies:
            22:07:52,421 INFO [JmxKernelAbstraction] persistence.units:ear=carcredit.ear,jar=carcredit.jar,unitName=userDatabase
            22:07:52,437 INFO [EJBContainer] STARTED EJB: de.heitmann.seam.credit.LoginAction ejbName: LoginAction
            22:07:52,453 INFO [JmxKernelAbstraction] installing MBean: jboss.j2ee:ear=carcredit.ear,jar=carcredit.jar,name=ShipAction,service=EJB3 with dependencies:
            22:07:52,453 INFO [JmxKernelAbstraction] persistence.units:ear=carcredit.ear,jar=carcredit.jar,unitName=userDatabase
            22:07:52,468 INFO [EJBContainer] STARTED EJB: de.heitmann.seam.credit.ShipAction ejbName: ShipAction
            22:07:52,500 INFO [EJB3Deployer] Deployed: file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit.jar
            22:07:52,515 INFO [TomcatDeployer] deploy, ctxPath=/carcredit, warUrl=.../tmp/deploy/tmp65361carcredit.ear-contents/carcredit-exp.war/
            22:07:52,625 INFO [ServletContextListener] Welcome to Seam 1.0.1.GA
            22:07:52,640 INFO [Initialization] reading components.xml
            22:07:52,656 INFO [Initialization] reading properties from: /seam.properties
            22:07:52,656 INFO [Initialization] reading properties from: /jndi.properties
            22:07:52,656 INFO [Initialization] initializing Seam
            22:07:52,687 INFO [Component] Component: org.jboss.seam.core.init, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Init
            22:07:52,718 INFO [Component] Component: org.jboss.seam.core.pages, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Pages
            22:07:52,718 INFO [Component] Component: events, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Events
            22:07:52,718 INFO [Component] Component: org.jboss.seam.core.manager, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.Manager
            22:07:52,734 INFO [Component] Component: switcher, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.Switcher
            22:07:52,750 INFO [Component] Component: redirect, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Redirect
            22:07:52,750 INFO [Component] Component: httpError, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.HttpError
            22:07:52,750 INFO [Component] Component: userPrincipal, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.UserPrincipal
            22:07:52,765 INFO [Component] Component: isUserInRole, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.IsUserInRole
            22:07:52,765 INFO [Component] Component: conversation, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Conversation
            22:07:52,765 INFO [Component] Component: conversationList, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationList
            22:07:52,781 INFO [Component] Component: conversationStack, scope: PAGE, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationStack
            22:07:52,781 INFO [Component] Component: facesContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.FacesContext
            22:07:52,781 INFO [Component] Component: pageContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.PageContext
            22:07:52,781 INFO [Component] Component: eventContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.EventContext
            22:07:52,781 INFO [Component] Component: sessionContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.SessionContext
            22:07:52,796 INFO [Component] Component: statelessContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.StatelessContext
            22:07:52,796 INFO [Component] Component: applicationContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ApplicationContext
            22:07:52,796 INFO [Component] Component: conversationContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ConversationContext
            22:07:52,796 INFO [Component] Component: businessProcessContext, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.BusinessProcessContext
            22:07:52,796 INFO [Component] Component: locale, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Locale
            22:07:52,812 INFO [Component] Component: messages, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.Messages
            22:07:52,812 INFO [Component] Component: theme, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.theme.Theme
            22:07:52,828 INFO [Component] Component: themeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.theme.ThemeSelector
            22:07:52,828 INFO [Component] Component: interpolator, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.Interpolator
            22:07:52,828 INFO [Component] Component: facesMessages, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.FacesMessages
            22:07:52,843 INFO [Component] Component: resourceBundle, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.ResourceBundle
            22:07:52,843 INFO [Component] Component: localeSelector, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.LocaleSelector
            22:07:52,843 INFO [Component] Component: uiComponent, scope: STATELESS, type: JAVA_BEAN, class: org.jboss.seam.core.UiComponent
            22:07:52,843 INFO [Component] Component: renderParameters, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.RenderParameters
            22:07:52,843 INFO [Component] Component: org.jboss.seam.remoting.messaging.subscriptionRegistry, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.remoting.messaging.SubscriptionRegistry
            22:07:52,859 INFO [Component] Component: pojoCache, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.PojoCache
            22:07:52,859 INFO [Component] Component: org.jboss.seam.debug.introspector, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.debug.Introspector
            22:07:52,906 INFO [Component] Component: org.jboss.seam.debug.contexts, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.debug.Contexts
            22:07:52,906 INFO [Component] Component: actor, scope: SESSION, type: JAVA_BEAN, class: org.jboss.seam.core.Actor
            22:07:52,906 INFO [Component] Component: businessProcess, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.BusinessProcess
            22:07:52,921 INFO [Component] Component: org.jboss.seam.core.pageflow, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Pageflow
            22:07:52,921 INFO [Component] Component: transition, scope: CONVERSATION, type: JAVA_BEAN, class: org.jboss.seam.core.Transition
            22:07:52,921 INFO [Component] Component: pooledTask, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.PooledTask
            22:07:52,937 INFO [Component] Component: taskInstance, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.TaskInstance
            22:07:52,937 INFO [Component] Component: processInstance, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.ProcessInstance
            22:07:52,937 INFO [Component] Component: taskInstanceList, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.TaskInstanceList
            22:07:52,953 INFO [Component] Component: pooledTaskInstanceList, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.PooledTaskInstanceList
            22:07:52,953 INFO [Component] Component: taskInstanceListForType, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.TaskInstanceListForType
            22:07:52,953 INFO [Component] Component: jbpmContext, scope: EVENT, type: JAVA_BEAN, class: org.jboss.seam.core.ManagedJbpmContext
            22:07:52,968 INFO [Component] Component: org.jboss.seam.core.jbpm, scope: APPLICATION, type: JAVA_BEAN, class: org.jboss.seam.core.Jbpm
            22:07:52,984 INFO [Scanner] scanning: /C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit.jar
            22:07:53,015 INFO [Component] Component: customer, scope: CONVERSATION, type: ENTITY_BEAN, class: de.heitmann.seam.credit.Customer
            22:07:53,015 INFO [Component] Component: credit, scope: CONVERSATION, type: ENTITY_BEAN, class: de.heitmann.seam.credit.Credit
            22:07:53,031 INFO [Component] Component: createCreditRequest, scope: CONVERSATION, type: STATEFUL_SESSION_BEAN, class: de.heitmann.seam.credit.CreateCreditRequestAction, JNDI: carcredit/CreateCreditRequestAction/local
            22:07:53,031 INFO [Component] Component: shipperAssignment, scope: EVENT, type: JAVA_BEAN, class: de.heitmann.seam.credit.ShipperAssignment
            22:07:53,031 INFO [Component] Component: accept, scope: CONVERSATION, type: STATEFUL_SESSION_BEAN, class: de.heitmann.seam.credit.AcceptAction, JNDI: carcredit/AcceptAction/local
            22:07:53,031 INFO [Component] Component: orderApproval, scope: EVENT, type: JAVA_BEAN, class: de.heitmann.seam.credit.OrderApprovalDecision
            22:07:53,031 INFO [Component] Component: editCustomer, scope: CONVERSATION, type: STATEFUL_SESSION_BEAN, class: de.heitmann.seam.credit.EditCustomerAction, JNDI: carcredit/EditCustomerAction/local
            22:07:53,031 INFO [Component] Component: checkout, scope: CONVERSATION, type: STATEFUL_SESSION_BEAN, class: de.heitmann.seam.credit.CheckoutAction, JNDI: carcredit/CheckoutAction/local
            22:07:53,031 INFO [Component] Component: myLogger, scope: EVENT, type: JAVA_BEAN, class: de.heitmann.seam.credit.Logger
            22:07:53,046 INFO [Component] Component: todoList, scope: EVENT, type: JAVA_BEAN, class: de.heitmann.seam.credit.TodoList
            22:07:53,046 INFO [Component] Component: afterShipping, scope: EVENT, type: JAVA_BEAN, class: de.heitmann.seam.credit.AfterShippingAction
            22:07:53,046 INFO [Component] Component: login, scope: STATELESS, type: STATELESS_SESSION_BEAN, class: de.heitmann.seam.credit.LoginAction, JNDI: carcredit/LoginAction/local
            22:07:53,046 INFO [Component] Component: ship, scope: CONVERSATION, type: STATEFUL_SESSION_BEAN, class: de.heitmann.seam.credit.ShipAction, JNDI: carcredit/ShipAction/local
            22:07:53,046 INFO [Component] Component: car, scope: CONVERSATION, type: ENTITY_BEAN, class: de.heitmann.seam.credit.Car
            22:07:53,078 INFO [JbpmConfiguration] using jbpm configuration resource 'jbpm.cfg.xml'
            22:07:53,140 INFO [Configuration] configuring from resource: hibernate.cfg.xml
            22:07:53,140 INFO [Configuration] Configuration resource: hibernate.cfg.xml
            22:07:53,156 INFO [Configuration] Reading mappings from resource: org/jbpm/db/hibernate.queries.hbm.xml
            22:07:53,156 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/ProcessDefinition.hbm.xml
            22:07:53,171 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.ProcessDefinition -> JBPM_PROCESSDEFINITION
            22:07:53,203 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Node.hbm.xml
            22:07:53,203 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Node -> JBPM_NODE
            22:07:53,218 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Transition.hbm.xml
            22:07:53,218 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Transition -> JBPM_TRANSITION
            22:07:53,234 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Event.hbm.xml
            22:07:53,234 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Event -> JBPM_EVENT
            22:07:53,234 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/Action.hbm.xml
            22:07:53,250 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.Action -> JBPM_ACTION
            22:07:53,250 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/SuperState.hbm.xml
            22:07:53,265 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.def.SuperState -> JBPM_NODE
            22:07:53,265 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/def/ExceptionHandler.hbm.xml
            22:07:53,265 INFO [HbmBinder] Mapping class: org.jbpm.graph.def.ExceptionHandler -> JBPM_EXCEPTIONHANDLER
            22:07:53,265 INFO [Configuration] Reading mappings from resource: org/jbpm/instantiation/Delegation.hbm.xml
            22:07:53,312 INFO [HbmBinder] Mapping class: org.jbpm.instantiation.Delegation -> JBPM_DELEGATION
            22:07:53,312 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/StartState.hbm.xml
            22:07:53,312 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.StartState -> JBPM_NODE
            22:07:53,312 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/EndState.hbm.xml
            22:07:53,312 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.EndState -> JBPM_NODE
            22:07:53,312 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/ProcessState.hbm.xml
            22:07:53,328 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.ProcessState -> JBPM_NODE
            22:07:53,328 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/Decision.hbm.xml
            22:07:53,343 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.Decision -> JBPM_NODE
            22:07:53,343 INFO [HbmBinder] Mapping collection: org.jbpm.graph.node.Decision.decisionConditions -> JBPM_DECISIONCONDITIONS
            22:07:53,343 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/Fork.hbm.xml
            22:07:53,343 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.Fork -> JBPM_NODE
            22:07:53,343 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/Join.hbm.xml
            22:07:53,359 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.Join -> JBPM_NODE
            22:07:53,359 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/State.hbm.xml
            22:07:53,359 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.State -> JBPM_NODE
            22:07:53,359 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/node/TaskNode.hbm.xml
            22:07:53,375 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.node.TaskNode -> JBPM_NODE
            22:07:53,390 INFO [Configuration] Reading mappings from resource: org/jbpm/context/def/ContextDefinition.hbm.xml
            22:07:53,390 INFO [Configuration] Reading mappings from resource: org/jbpm/context/def/VariableAccess.hbm.xml
            22:07:53,390 INFO [HbmBinder] Mapping class: org.jbpm.context.def.VariableAccess -> JBPM_VARIABLEACCESS
            22:07:53,406 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/TaskMgmtDefinition.hbm.xml
            22:07:53,406 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/Swimlane.hbm.xml
            22:07:53,421 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Swimlane -> JBPM_SWIMLANE
            22:07:53,421 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/Task.hbm.xml
            22:07:53,421 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.Task -> JBPM_TASK
            22:07:53,453 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/def/TaskController.hbm.xml
            22:07:53,468 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.def.TaskController -> JBPM_TASKCONTROLLER
            22:07:53,468 INFO [Configuration] Reading mappings from resource: org/jbpm/module/def/ModuleDefinition.hbm.xml
            22:07:53,468 INFO [HbmBinder] Mapping class: org.jbpm.module.def.ModuleDefinition -> JBPM_MODULEDEFINITION
            22:07:53,484 INFO [Configuration] Reading mappings from resource: org/jbpm/bytes/ByteArray.hbm.xml
            22:07:53,484 INFO [HbmBinder] Mapping class: org.jbpm.bytes.ByteArray -> JBPM_BYTEARRAY
            22:07:53,484 INFO [HbmBinder] Mapping collection: org.jbpm.bytes.ByteArray.byteBlocks -> JBPM_BYTEBLOCK
            22:07:53,484 INFO [Configuration] Reading mappings from resource: org/jbpm/file/def/FileDefinition.hbm.xml
            22:07:53,500 INFO [HbmBinder] Mapping subclass: org.jbpm.file.def.FileDefinition -> JBPM_MODULEDEFINITION
            22:07:53,500 INFO [Configuration] Reading mappings from resource: org/jbpm/scheduler/def/CreateTimerAction.hbm.xml
            22:07:53,500 INFO [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CreateTimerAction -> JBPM_ACTION
            22:07:53,500 INFO [Configuration] Reading mappings from resource: org/jbpm/scheduler/def/CancelTimerAction.hbm.xml
            22:07:53,515 INFO [HbmBinder] Mapping subclass: org.jbpm.scheduler.def.CancelTimerAction -> JBPM_ACTION
            22:07:53,515 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/Comment.hbm.xml
            22:07:53,531 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.Comment -> JBPM_COMMENT
            22:07:53,531 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/ProcessInstance.hbm.xml
            22:07:53,546 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.ProcessInstance -> JBPM_PROCESSINSTANCE
            22:07:53,546 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/Token.hbm.xml
            22:07:53,562 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.Token -> JBPM_TOKEN
            22:07:53,562 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/exe/RuntimeAction.hbm.xml
            22:07:53,578 INFO [HbmBinder] Mapping class: org.jbpm.graph.exe.RuntimeAction -> JBPM_RUNTIMEACTION
            22:07:53,578 INFO [Configuration] Reading mappings from resource: org/jbpm/module/exe/ModuleInstance.hbm.xml
            22:07:53,593 INFO [HbmBinder] Mapping class: org.jbpm.module.exe.ModuleInstance -> JBPM_MODULEINSTANCE
            22:07:53,593 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/ContextInstance.hbm.xml
            22:07:53,593 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.ContextInstance -> JBPM_MODULEINSTANCE
            22:07:53,593 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/TokenVariableMap.hbm.xml
            22:07:53,609 INFO [HbmBinder] Mapping class: org.jbpm.context.exe.TokenVariableMap -> JBPM_TOKENVARIABLEMAP
            22:07:53,609 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/VariableInstance.hbm.xml
            22:07:53,625 INFO [HbmBinder] Mapping class: org.jbpm.context.exe.VariableInstance -> JBPM_VARIABLEINSTANCE
            22:07:53,625 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/ByteArrayInstance.hbm.xml
            22:07:53,640 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.ByteArrayInstance -> JBPM_VARIABLEINSTANCE
            22:07:53,640 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/DateInstance.hbm.xml
            22:07:53,640 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DateInstance -> JBPM_VARIABLEINSTANCE
            22:07:53,640 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/DoubleInstance.hbm.xml
            22:07:53,656 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.DoubleInstance -> JBPM_VARIABLEINSTANCE
            22:07:53,656 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/HibernateLongInstance.hbm.xml
            22:07:53,656 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateLongInstance -> JBPM_VARIABLEINSTANCE
            22:07:53,656 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/HibernateStringInstance.hbm.xml
            22:07:53,671 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.HibernateStringInstance -> JBPM_VARIABLEINSTANCE
            22:07:53,671 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/LongInstance.hbm.xml
            22:07:53,671 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.LongInstance -> JBPM_VARIABLEINSTANCE
            22:07:53,671 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/NullInstance.hbm.xml
            22:07:53,687 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.NullInstance -> JBPM_VARIABLEINSTANCE
            22:07:53,687 INFO [Configuration] Reading mappings from resource: org/jbpm/context/exe/variableinstance/StringInstance.hbm.xml
            22:07:53,703 INFO [HbmBinder] Mapping subclass: org.jbpm.context.exe.variableinstance.StringInstance -> JBPM_VARIABLEINSTANCE
            22:07:53,703 INFO [Configuration] Reading mappings from resource: org/jbpm/msg/Message.hbm.xml
            22:07:53,703 INFO [HbmBinder] Mapping class: org.jbpm.msg.Message -> JBPM_MESSAGE
            22:07:53,703 INFO [Configuration] Reading mappings from resource: org/jbpm/msg/db/TextMessage.hbm.xml
            22:07:53,718 INFO [HbmBinder] Mapping subclass: org.jbpm.msg.db.TextMessage -> JBPM_MESSAGE
            22:07:53,718 INFO [Configuration] Reading mappings from resource: org/jbpm/command/ExecuteActionCommand.hbm.xml
            22:07:53,718 INFO [HbmBinder] Mapping subclass: org.jbpm.command.ExecuteActionCommand -> JBPM_MESSAGE
            22:07:53,734 INFO [Configuration] Reading mappings from resource: org/jbpm/command/ExecuteNodeCommand.hbm.xml
            22:07:53,734 INFO [HbmBinder] Mapping subclass: org.jbpm.command.ExecuteNodeCommand -> JBPM_MESSAGE
            22:07:53,734 INFO [Configuration] Reading mappings from resource: org/jbpm/command/SignalCommand.hbm.xml
            22:07:53,750 INFO [HbmBinder] Mapping subclass: org.jbpm.command.SignalCommand -> JBPM_MESSAGE
            22:07:53,750 INFO [Configuration] Reading mappings from resource: org/jbpm/command/TaskInstanceEndCommand.hbm.xml
            22:07:53,750 INFO [HbmBinder] Mapping subclass: org.jbpm.command.TaskInstanceEndCommand -> JBPM_MESSAGE
            22:07:53,750 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/TaskMgmtInstance.hbm.xml
            22:07:53,765 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.exe.TaskMgmtInstance -> JBPM_MODULEINSTANCE
            22:07:53,765 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/TaskInstance.hbm.xml
            22:07:53,781 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.TaskInstance -> JBPM_TASKINSTANCE
            22:07:53,781 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.pooledActors -> JBPM_TASKACTORPOOL
            22:07:53,781 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/PooledActor.hbm.xml
            22:07:53,796 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.PooledActor -> JBPM_POOLEDACTOR
            22:07:53,796 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.PooledActor.taskInstances -> JBPM_TASKACTORPOOL
            22:07:53,796 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/exe/SwimlaneInstance.hbm.xml
            22:07:53,812 INFO [HbmBinder] Mapping class: org.jbpm.taskmgmt.exe.SwimlaneInstance -> JBPM_SWIMLANEINSTANCE
            22:07:53,812 INFO [Configuration] Reading mappings from resource: org/jbpm/scheduler/exe/Timer.hbm.xml
            22:07:53,812 INFO [HbmBinder] Mapping class: org.jbpm.scheduler.exe.Timer -> JBPM_TIMER
            22:07:53,828 INFO [Configuration] Reading mappings from resource: org/jbpm/logging/log/ProcessLog.hbm.xml
            22:07:53,828 INFO [HbmBinder] Mapping class: org.jbpm.logging.log.ProcessLog -> JBPM_LOG
            22:07:53,828 INFO [Configuration] Reading mappings from resource: org/jbpm/logging/log/MessageLog.hbm.xml
            22:07:53,843 INFO [HbmBinder] Mapping subclass: org.jbpm.logging.log.MessageLog -> JBPM_LOG
            22:07:53,843 INFO [Configuration] Reading mappings from resource: org/jbpm/logging/log/CompositeLog.hbm.xml
            22:07:53,843 INFO [HbmBinder] Mapping subclass: org.jbpm.logging.log.CompositeLog -> JBPM_LOG
            22:07:53,843 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ActionLog.hbm.xml
            22:07:53,859 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ActionLog -> JBPM_LOG
            22:07:53,859 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/NodeLog.hbm.xml
            22:07:53,859 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.NodeLog -> JBPM_LOG
            22:07:53,859 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ProcessInstanceCreateLog.hbm.xml
            22:07:53,875 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceCreateLog -> JBPM_LOG
            22:07:53,875 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/ProcessInstanceEndLog.hbm.xml
            22:07:53,875 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.ProcessInstanceEndLog -> JBPM_LOG
            22:07:53,875 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/SignalLog.hbm.xml
            22:07:53,890 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.SignalLog -> JBPM_LOG
            22:07:53,890 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/TokenCreateLog.hbm.xml
            22:07:53,890 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenCreateLog -> JBPM_LOG
            22:07:53,890 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/TokenEndLog.hbm.xml
            22:07:53,906 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.TokenEndLog -> JBPM_LOG
            22:07:53,906 INFO [Configuration] Reading mappings from resource: org/jbpm/graph/log/TransitionLog.hbm.xml
            22:07:53,921 INFO [HbmBinder] Mapping subclass: org.jbpm.graph.log.TransitionLog -> JBPM_LOG
            22:07:53,921 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableLog.hbm.xml
            22:07:53,921 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableLog -> JBPM_LOG
            22:07:53,921 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableCreateLog.hbm.xml
            22:07:53,937 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableCreateLog -> JBPM_LOG
            22:07:53,937 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableDeleteLog.hbm.xml
            22:07:53,937 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableDeleteLog -> JBPM_LOG
            22:07:53,937 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/VariableUpdateLog.hbm.xml
            22:07:53,937 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.VariableUpdateLog -> JBPM_LOG
            22:07:53,937 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/ByteArrayUpdateLog.hbm.xml
            22:07:53,953 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.ByteArrayUpdateLog -> JBPM_LOG
            22:07:53,953 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/DateUpdateLog.hbm.xml
            22:07:53,953 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DateUpdateLog -> JBPM_LOG
            22:07:53,953 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/DoubleUpdateLog.hbm.xml
            22:07:53,968 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.DoubleUpdateLog -> JBPM_LOG
            22:07:53,968 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/HibernateLongUpdateLog.hbm.xml
            22:07:53,968 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateLongUpdateLog -> JBPM_LOG
            22:07:53,968 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/HibernateStringUpdateLog.hbm.xml
            22:07:53,984 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.HibernateStringUpdateLog -> JBPM_LOG
            22:07:53,984 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/LongUpdateLog.hbm.xml
            22:07:54,000 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.LongUpdateLog -> JBPM_LOG
            22:07:54,000 INFO [Configuration] Reading mappings from resource: org/jbpm/context/log/variableinstance/StringUpdateLog.hbm.xml
            22:07:54,000 INFO [HbmBinder] Mapping subclass: org.jbpm.context.log.variableinstance.StringUpdateLog -> JBPM_LOG
            22:07:54,000 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskLog.hbm.xml
            22:07:54,015 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskLog -> JBPM_LOG
            22:07:54,015 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskCreateLog.hbm.xml
            22:07:54,015 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskCreateLog -> JBPM_LOG
            22:07:54,015 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskAssignLog.hbm.xml
            22:07:54,031 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskAssignLog -> JBPM_LOG
            22:07:54,031 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/TaskEndLog.hbm.xml
            22:07:54,031 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.TaskEndLog -> JBPM_LOG
            22:07:54,031 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/SwimlaneLog.hbm.xml
            22:07:54,046 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneLog -> JBPM_LOG
            22:07:54,046 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/SwimlaneCreateLog.hbm.xml
            22:07:54,046 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneCreateLog -> JBPM_LOG
            22:07:54,062 INFO [Configuration] Reading mappings from resource: org/jbpm/taskmgmt/log/SwimlaneAssignLog.hbm.xml
            22:07:54,062 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.log.SwimlaneAssignLog -> JBPM_LOG
            22:07:54,062 INFO [Configuration] Configured SessionFactory: null
            22:07:54,109 INFO [HbmBinder] Mapping subclass: org.jbpm.taskmgmt.def.TaskMgmtDefinition -> JBPM_MODULEDEFINITION
            22:07:54,109 INFO [HbmBinder] Mapping subclass: org.jbpm.context.def.ContextDefinition -> JBPM_MODULEDEFINITION
            22:07:54,109 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.events -> JBPM_EVENT
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.nodes -> JBPM_NODE
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.actions -> JBPM_ACTION
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ProcessDefinition.definitions -> JBPM_MODULEDEFINITION
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.events -> JBPM_EVENT
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.leavingTransitions -> JBPM_TRANSITION
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Node.arrivingTransitions -> JBPM_TRANSITION
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.events -> JBPM_EVENT
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Transition.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.Event.actions -> JBPM_ACTION
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.SuperState.nodes -> JBPM_NODE
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.def.ExceptionHandler.actions -> JBPM_ACTION
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.node.ProcessState.variableAccesses -> JBPM_VARIABLEACCESS
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.node.TaskNode.tasks -> JBPM_TASK
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Swimlane.tasks -> JBPM_TASK
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.events -> JBPM_EVENT
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.Task.exceptionHandlers -> JBPM_EXCEPTIONHANDLER
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskController.variableAccesses -> JBPM_VARIABLEACCESS
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.file.def.FileDefinition.processFiles -> JBPM_BYTEARRAY
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.runtimeActions -> JBPM_RUNTIMEACTION
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.ProcessInstance.instances -> JBPM_MODULEINSTANCE
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.children -> JBPM_TOKEN
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.graph.exe.Token.comments -> JBPM_COMMENT
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.context.exe.ContextInstance.tokenVariableMaps -> JBPM_TOKENVARIABLEMAP
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.context.exe.TokenVariableMap.variableInstances -> JBPM_VARIABLEINSTANCE
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.swimlaneInstances -> JBPM_SWIMLANEINSTANCE
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskMgmtInstance.taskInstances -> JBPM_TASKINSTANCE
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.variableInstances -> JBPM_VARIABLEINSTANCE
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.TaskInstance.comments -> JBPM_COMMENT
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.exe.SwimlaneInstance.pooledActors -> JBPM_POOLEDACTOR
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.logging.log.CompositeLog.children -> JBPM_LOG
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes -> JBPM_SWIMLANE
            22:07:54,125 INFO [HbmBinder] Mapping collection: org.jbpm.taskmgmt.def.TaskMgmtDefinition.tasks -> JBPM_TASK
            22:07:54,156 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
            22:07:54,156 INFO [DatasourceConnectionProvider] Using datasource: java:/carcreditDatasource
            22:07:54,156 INFO [SettingsFactory] RDBMS: HSQL Database Engine, version: 1.8.0
            22:07:54,156 INFO [SettingsFactory] JDBC driver: HSQL Database Engine Driver, version: 1.8.0
            22:07:54,156 INFO [Dialect] Using dialect: org.hibernate.dialect.HSQLDialect
            22:07:54,156 INFO [TransactionFactoryFactory] Transaction strategy: org.hibernate.transaction.JTATransactionFactory
            22:07:54,156 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
            22:07:54,156 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
            22:07:54,156 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
            22:07:54,156 INFO [TransactionManagerLookupFactory] instantiating TransactionManagerLookup: org.hibernate.transaction.JBossTransactionManagerLookup
            22:07:54,156 INFO [TransactionManagerLookupFactory] instantiated TransactionManagerLookup
            22:07:54,156 INFO [SettingsFactory] Automatic flush during beforeCompletion(): disabled
            22:07:54,156 INFO [SettingsFactory] Automatic session close at end of transaction: disabled
            22:07:54,156 INFO [SettingsFactory] JDBC batch size: 15
            22:07:54,156 INFO [SettingsFactory] JDBC batch updates for versioned data: disabled
            22:07:54,156 INFO [SettingsFactory] Scrollable result sets: enabled
            22:07:54,156 INFO [SettingsFactory] JDBC3 getGeneratedKeys(): disabled
            22:07:54,156 INFO [SettingsFactory] Connection release mode: auto
            22:07:54,156 INFO [SettingsFactory] Default batch fetch size: 1
            22:07:54,156 INFO [SettingsFactory] Generate SQL with comments: disabled
            22:07:54,156 INFO [SettingsFactory] Order SQL updates by primary key: disabled
            22:07:54,171 INFO [SettingsFactory] Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
            22:07:54,171 INFO [ASTQueryTranslatorFactory] Using ASTQueryTranslatorFactory
            22:07:54,171 INFO [SettingsFactory] Query language substitutions: {}
            22:07:54,171 INFO [SettingsFactory] Second-level cache: enabled
            22:07:54,171 INFO [SettingsFactory] Query cache: disabled
            22:07:54,171 INFO [SettingsFactory] Cache provider: org.hibernate.cache.HashtableCacheProvider
            22:07:54,171 INFO [SettingsFactory] Optimize cache for minimal puts: disabled
            22:07:54,171 INFO [SettingsFactory] Structured second-level cache entries: disabled
            22:07:54,171 INFO [SettingsFactory] Statistics: disabled
            22:07:54,171 INFO [SettingsFactory] Deleted entity synthetic identifier rollback: disabled
            22:07:54,171 INFO [SettingsFactory] Default entity-mode: pojo
            22:07:54,171 INFO [SessionFactoryImpl] building session factory
            22:07:55,687 INFO [SessionFactoryObjectFactory] Not binding factory to JNDI, no JNDI name configured
            22:07:55,703 INFO [SchemaExport] Running hbm2ddl schema export
            22:07:55,703 INFO [SchemaExport] exporting generated schema to database
            22:07:55,734 INFO [SchemaExport] Executing import script: /import.sql
            22:07:55,734 INFO [SchemaExport] schema export complete
            22:07:55,734 INFO [NamingHelper] JNDI InitialContext properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory, java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
            22:07:55,750 WARN [FromElementType] Using non-qualified column reference [id -> ([ID_])]
            22:07:55,750 WARN [FromElementType] Using non-qualified column reference [isSuspended -> ([ISSUSPENDED_])]
            22:07:55,750 WARN [FromElementType] Using non-qualified column reference [token -> ([TOKEN_])]
            22:07:55,781 WARN [FromElementType] Using non-qualified column reference [isSuspended -> ([ISSUSPENDED_])]
            22:07:55,781 WARN [FromElementType] Using non-qualified column reference [token -> ([TOKEN_])]
            22:07:55,796 WARN [FromElementType] Using non-qualified column reference [isSuspended -> ([ISSUSPENDED_])]
            22:07:55,796 WARN [FromElementType] Using non-qualified column reference [token -> ([TOKEN_])]
            22:07:55,812 WARN [FromElementType] Using non-qualified column reference [isSuspended -> ([ISSUSPENDED_])]
            22:07:55,812 WARN [FromElementType] Using non-qualified column reference [token -> ([TOKEN_])]
            22:07:55,843 WARN [FromElementType] Using non-qualified column reference [processInstance -> ([PROCESSINSTANCE_])]
            22:07:55,875 WARN [FromElementType] Using non-qualified column reference [token -> ([TOKEN_])]
            22:07:56,125 INFO [Initialization] done initializing Seam
            22:07:56,125 INFO [FacesConfigurator] Reading standard config org/apache/myfaces/resource/standard-faces-config.xml
            22:07:56,171 INFO [FacesConfigurator] Reading config jar:file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/jboss-seam.jar!/META-INF/faces-config.xml
            22:07:56,171 INFO [FacesConfigurator] Reading config jar:file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit-exp.war/WEB-INF/lib/jboss-seam-ui.jar!/META-INF/faces-config.xml
            22:07:56,187 INFO [FacesConfigurator] Reading config jar:file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/faces-config.xml
            22:07:56,187 INFO [FacesConfigurator] Reading config /WEB-INF/faces-config.xml
            22:07:56,296 INFO [StartupServletContextListener] ServletContext 'C:\seam-dev\jboss-4.0.4.GA\server\default\.\tmp\deploy\tmp65361carcredit.ear-contents\carcredit-exp.war\' initialized.
            22:07:56,343 INFO [EARDeployer] Started J2EE application: file:/C:/seam-dev/jboss-4.0.4.GA/server/default/deploy/carcredit.ear
            22:08:07,234 INFO [Pages] reading pages.xml
            22:08:07,718 ERROR [STDERR] 27.11.2006 22:08:07 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
            INFO: Added Library from: jar:file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jstl-core.taglib.xml
            22:08:07,718 ERROR [STDERR] 27.11.2006 22:08:07 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
            INFO: Added Library from: jar:file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jstl-fn.taglib.xml
            22:08:07,765 ERROR [STDERR] 27.11.2006 22:08:07 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
            INFO: Added Library from: jar:file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-core.taglib.xml
            22:08:07,765 ERROR [STDERR] 27.11.2006 22:08:07 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
            INFO: Added Library from: jar:file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit-exp.war/WEB-INF/lib/jboss-seam-ui.jar!/META-INF/seam.taglib.xml
            22:08:07,781 ERROR [STDERR] 27.11.2006 22:08:07 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
            INFO: Added Library from: jar:file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-html.taglib.xml
            22:08:07,812 ERROR [STDERR] 27.11.2006 22:08:07 com.sun.facelets.compiler.TagLibraryConfig loadImplicit
            INFO: Added Library from: jar:file:/C:/seam-dev/jboss-4.0.4.GA/server/default/tmp/deploy/tmp65361carcredit.ear-contents/carcredit-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf-ui.taglib.xml
            22:08:08,062 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.PRETTY_HTML' found, using default value true
            22:08:08,062 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.ALLOW_JAVASCRIPT' found, using default value true
            22:08:08,062 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.DETECT_JAVASCRIPT' found, using default value false
            22:08:08,062 INFO [MyfacesConfig] No context init parameter 'org.apache.myfaces.AUTO_SCROLL' found, using default value false
            22:08:17,109 INFO [STDOUT] Hibernate: select user0_.USERID as USERID247_, user0_.PASSWORD as PASSWORD247_, user0_.USERNAME as USERNAME247_, user0_.FIRSTNAME as FIRSTNAME247_, user0_.LASTNAME as LASTNAME247_, user0_.employerSince as employer7_247_, user0_.city as city247_, user0_.street as street247_, user0_.zip as zip247_, user0_.email as email247_, user0_.phone as phone247_, user0_.addresssince as address13_247_, user0_.branch as branch247_, user0_.company as company247_, user0_.houseNumber as houseNu16_247_, user0_.mobilephone as mobilep17_247_, user0_.sex as sex247_, user0_.title as title247_, user0_.employerstatus as employe20_247_, user0_.numberofchild as numbero21_247_, user0_.birthday as birthday247_, user0_.familystatus as familys23_247_, user0_.job as job247_, user0_.nationality as nationa25_247_, user0_.place as place247_, user0_.othercredit as othercr27_247_, user0_.salary as salary247_, user0_.DTYPE as DTYPE247_ from USERS user0_ where user0_.USERNAME=? and user0_.PASSWORD=?
            22:08:28,937 INFO [STDOUT] Hibernate: select user0_.USERID as USERID247_, user0_.PASSWORD as PASSWORD247_, user0_.USERNAME as USERNAME247_, user0_.FIRSTNAME as FIRSTNAME247_, user0_.LASTNAME as LASTNAME247_, user0_.employerSince as employer7_247_, user0_.city as city247_, user0_.street as street247_, user0_.zip as zip247_, user0_.email as email247_, user0_.phone as phone247_, user0_.addresssince as address13_247_, user0_.branch as branch247_, user0_.company as company247_, user0_.houseNumber as houseNu16_247_, user0_.mobilephone as mobilep17_247_, user0_.sex as sex247_, user0_.title as title247_, user0_.employerstatus as employe20_247_, user0_.numberofchild as numbero21_247_, user0_.birthday as birthday247_, user0_.familystatus as familys23_247_, user0_.job as job247_, user0_.nationality as nationa25_247_, user0_.place as place247_, user0_.othercredit as othercr27_247_, user0_.salary as salary247_, user0_.DTYPE as DTYPE247_ from USERS user0_ where user0_.USERNAME=? and user0_.PASSWORD=?
            22:09:02,609 ERROR [STDERR] createCredit
            22:09:05,968 ERROR [STDERR] customerMichael
            22:09:05,984 INFO [STDOUT] Hibernate: insert into Credit (CREDITID, term, price, customer, car, downpayment) values (null, ?, ?, ?, ?, ?)
            22:09:05,984 INFO [STDOUT] Hibernate: call identity()
            22:09:05,984 ERROR [STDERR] save: ID =1
            22:09:06,093 WARN [ProxyWarnLog] Narrowing proxy to class org.jbpm.graph.node.TaskNode - this operation breaks ==
            22:09:53,515 INFO [STDOUT] Hibernate: select user0_.USERID as USERID247_, user0_.PASSWORD as PASSWORD247_, user0_.USERNAME as USERNAME247_, user0_.FIRSTNAME as FIRSTNAME247_, user0_.LASTNAME as LASTNAME247_, user0_.employerSince as employer7_247_, user0_.city as city247_, user0_.street as street247_, user0_.zip as zip247_, user0_.email as email247_, user0_.phone as phone247_, user0_.addresssince as address13_247_, user0_.branch as branch247_, user0_.company as company247_, user0_.houseNumber as houseNu16_247_, user0_.mobilephone as mobilep17_247_, user0_.sex as sex247_, user0_.title as title247_, user0_.employerstatus as employe20_247_, user0_.numberofchild as numbero21_247_, user0_.birthday as birthday247_, user0_.familystatus as familys23_247_, user0_.job as job247_, user0_.nationality as nationa25_247_, user0_.place as place247_, user0_.othercredit as othercr27_247_, user0_.salary as salary247_, user0_.DTYPE as DTYPE247_ from USERS user0_ where user0_.USERNAME=? and user0_.PASSWORD=?
            22:09:53,593 ERROR [STDERR] 27.11.2006 22:09:53 com.sun.facelets.tag.jsf.ComponentRule warnAttr
            WARNUNG: /WEB-INF/incl/stats.xhtml @5,51 xmlns="http://www.w3.org/1999/xhtml" Property '' is not on type: javax.faces.component.UINamingContainer
            22:09:58,765 INFO [STDOUT] Hibernate: select credit0_.CREDITID as CREDITID249_, credit0_.term as term249_, credit0_.price as price249_, credit0_.customer as customer249_, credit0_.car as car249_, credit0_.downpayment as downpaym5_249_ from Credit credit0_ where credit0_.CREDITID=?
            22:09:58,765 INFO [STDOUT] Hibernate: select customer0_.USERID as USERID247_0_, customer0_.PASSWORD as PASSWORD247_0_, customer0_.USERNAME as USERNAME247_0_, customer0_.FIRSTNAME as FIRSTNAME247_0_, customer0_.LASTNAME as LASTNAME247_0_, customer0_.employerSince as employer7_247_0_, customer0_.city as city247_0_, customer0_.street as street247_0_, customer0_.zip as zip247_0_, customer0_.email as email247_0_, customer0_.phone as phone247_0_, customer0_.addresssince as address13_247_0_, customer0_.branch as branch247_0_, customer0_.company as company247_0_, customer0_.houseNumber as houseNu16_247_0_, customer0_.mobilephone as mobilep17_247_0_, customer0_.sex as sex247_0_, customer0_.title as title247_0_, customer0_.employerstatus as employe20_247_0_, customer0_.numberofchild as numbero21_247_0_, customer0_.birthday as birthday247_0_, customer0_.familystatus as familys23_247_0_, customer0_.job as job247_0_, customer0_.nationality as nationa25_247_0_, customer0_.place as place247_0_, customer0_.othercredit as othercr27_247_0_, customer0_.salary as salary247_0_ from USERS customer0_ where customer0_.USERID=? and customer0_.DTYPE='customer'
            22:09:58,796 INFO [STDOUT] viewTask BeginTask
            


            Executing the accept-action in the xhtml

            <h:form>
            <h:commandButton action="#{accept.reject}" value="Reject Order" />
            <h:commandButton action="#{accept.accept}" value="Accept Order" />
            </h:form>


            only send the message on the xhtml....

            • 3. Re: SEAM and JBPM
              juangiovanolli

              do you solve the problem??? please let me know because i'm getting a similar problem

              • 4. Re: SEAM and JBPM
                juangiovanolli

                sorry, my english is terrible:

                did you solve the problem??? please let me know because i'm getting a similar problem

                • 5. Re: SEAM and JBPM
                  juangiovanolli

                  did you try using the s:link button instead of h:commandbutton???
                  i don't remember exactly my problem, but i remember that one of my solutions was use s:link.

                  Good Luck!