[jboss-user] [JBoss jBPM] - Re: Timer not firing - why ???

2008-02-19 Thread mryilauer
I'm sure not all of this is necessary, but I threw it all at it, and it worked. Whenever I trimmed anything, it didn't. This can't be right, since it seems to create a second timer, but I took care of that in the handler. timer = new Timer(pi.getRootToken());

[jboss-user] [JBoss jBPM] - Re: simple question

2008-02-15 Thread mryilauer
What I mean by launch in the server is: 1) I use the designer to create a process and unit tests that work as I intend 2) I deploy the process to the server, it works as I intend, I can interact with it from the console 3) Now, I want to write a class that starts a new instance of the process in

[jboss-user] [JBoss jBPM] - simple question

2008-02-14 Thread mryilauer
I understand jdpl, know how to create, unit test, deploy, and debug a process. I created a process with a timer in it that works. Now, all I want to do is create a class that gets a process instance from that same db that that console sees (public), starts it up in the engine, so that I can

[jboss-user] [JBoss jBPM] - Re: Timer not firing - why ???

2008-02-14 Thread mryilauer
I am not saying that this is right, but I have a process with a timer, and it fires once, so I attach a handler to it that transitions back to the same node if the condition is not met, so then the timer gets set again. View the original post :

[jboss-user] [JBoss jBPM] - Re: An exception happened during the deployment of the proce

2007-11-27 Thread mryilauer
The whole deploy from the IDE process seems very brittle. I took the websale example, it worked and deployed fine, then I added a node to the diagram without any transitions to the existing process, and I get the same deployment error. Then I removed the node, and it still wouldn't deploy. Then

[jboss-user] [O'Reilly JBoss 3.0/4.0 Workbook] - Re: org.apache.commons.fileupload.FileUploadException: the r

2007-11-27 Thread mryilauer
Did you ever get an answer to this? I am having the same problem all the time. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4108074#4108074 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4108074

[jboss-user] [JBoss jBPM] - An exception happened during the deployment of the process

2007-11-26 Thread mryilauer
Reason: An unexpected exception caused the deployment to fail. I keep running into this. I have worked the samples, they work, I have the console running and I can deploy and run processes straight out of the book, but when I try to run the simplest hello world type of process that I create

[jboss-user] [JBoss jBPM] - Re: An exception happened during the deployment of the proce

2007-11-26 Thread mryilauer
Sorry, the xml didn't render properly, let me try again ?xml version=1.0 encoding=UTF-8? | | process-definition xmlns=urn:jbpm.org:jpdl-3.2 name=simple |start-state name=start | transition name=to_wait to=wait for signature/transition | |/start-state | |

[jboss-user] [JBoss jBPM] - Programmatically starting a process

2007-11-26 Thread mryilauer
I want to programmatically start a process. It seems pretty simple, just use the constructor with the process definition. I do it and it seems to work, but the process never shows up in the console. I think the problem is that when I deploy from the JBoss IDE for eclipse, it says the deploy

[jboss-user] [JBoss jBPM] - Re: An exception happened during the deployment of the proce

2007-11-26 Thread mryilauer
nothing at all shows up in jbpm-jdpl-3.2.2/server/server/jbpm/log/server.log; every 5 seconds it just does its thing and nothing shows up for the failed deploy. The failure seems to be a syntax error, since when I have a 2 node diagram, it deploys fine, but when I add another node, it won't.