When i try to deploy my process definition via eclipse, my process definition is deployed, except the action.
This is my process definition: | <?xml version="1.0" encoding="UTF-8"?> | <process-definition name="Avarias"> | <start-state name="start"> | <transition name="OK" to="Viatura imobilizada?"></transition> | </start-state> | <end-state name="end"></end-state> | <state name="Viatura imobilizada?"> | <transition name="OK" to="Requer assistĂȘncia no local?"></transition> | <transition name="NOK" to="Fechar ocorrencia?"></transition> | </state> | <state name="Requer assistĂȘncia no local?"> | <transition name="NOK" to="Fechar ocorrencia?"></transition> | <transition name="OK" to="Fechar ocorrencia?"> | <action name="sendMail" action="com.link.bem.jbpm.action.SendMailHandler"></action> | </transition> | </state> | <state name="Fechar ocorrencia?"> | <transition name="OK" to="end"> | <action name="closeOccurrence" action="com.link.bem.jbpm.action.CloseOccurrenceHandler"></action> | </transition> | </state> | </process-definition> | When i deploy the processdefinition, the actions name are saved in the action table of jbpm database, but the actions class aren't saved in the jbpm database. I don't understand why. What's wrong? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3933408#3933408 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3933408 ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
