Why do you think the problem is with the save() call?  That happens way later 
than all your printouts, and I do not see ANY of your printouts in the log you 
pasted.  Am I just missing them?  The last error says this:
javax.portlet.PortletException: Error executing action processInstance
I don't see where you are actually getting the process instance in your code.  
If you are trying to store it globally in your class, I don't think that will 
work.  I believe that since all the jbpm objects are loaded via Hibernate, they 
have to be obtained and used all within the same session (i.e. inside your try 
block after creating the JbpmContext).  If you are trying to store the 
ProcessInstance at the class level, you should try storing the process instance 
ID instead, and then use the JbpmContext to load the process instance, using 
that process instance ID, whenever you need it.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3954034#3954034

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3954034

Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to