[jboss-user] [JBoss jBPM] - Re: new instance

2007-05-23 Thread mputz
You are welcome, no problem! And enjoy working with jBPM ;-) Regards, Martin View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047805#4047805 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047805

[jboss-user] [JBoss jBPM] - Re: new instance

2007-05-22 Thread kukeltje
I normally do | ProcessInstance pi = new ProcessInstance( pd ); | pi.signal(); | to start a process, but that should not make a difference... Turn on debug logging and see what happens View the original post :

[jboss-user] [JBoss jBPM] - Re: new instance

2007-05-22 Thread ricardomarques
Thanks for the quick reply kukeltje. I'm really getting nuts with this. Here's the log, please let me know if is enough for you. By the way, i've tried the code the same way than I, and the result was the same. | | 13:37:04,750 DEBUG [DefaultSaveOrUpdateEventListener] saving transient

[jboss-user] [JBoss jBPM] - Re: new instance

2007-05-22 Thread mputz
I just tried your code and it worked for me. What is strange is in your logs there is no NODE_ assigned in the insert statement for JBPM_TOKEN: 13:37:06,750 DEBUG [LongType] binding null to parameter: 11 I wonder if your process deployed properly? Can you check in your db if you have the

[jboss-user] [JBoss jBPM] - Re: new instance

2007-05-22 Thread ricardomarques
Hello Martin, thanks for your feedback. Regarding your post, you got the rabbit! I get no rows for that query. In fact I only get rows for the first two process that I deployed, and I going on 15th. The code i'm using to deploy is this: | JbpmConfiguration jbpmConfiguration =

[jboss-user] [JBoss jBPM] - Re: new instance

2007-05-22 Thread mputz
You shouldn't create a new ProcessDefinition object by calling ProcessDefinition p = new ProcessDefinition(myprocess); first. Instead, create it like this: ZipInputStream zipInputStream = new ZipInputStream(new FileInputStream(c:\\myprocess.par)); | ProcessDefinition processDefinition =

[jboss-user] [JBoss jBPM] - Re: new instance

2007-05-22 Thread ricardomarques
Wee! It works now thanks man, I will make sure that you will have a place in heaven :P View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4047615#4047615 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4047615