[JBoss-user] [JBoss jBPM] - Re: Class chooser for ActionHandler not working in designer

2006-07-05 Thread hoogenbj
http://jira.jboss.com/jira/browse/JBPM-688 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955456#3955456 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955456 Using Tomcat but need to do more? Need to support web servi

[JBoss-user] [JBoss jBPM] - Re: Class chooser for ActionHandler not working in designer

2006-07-05 Thread hoogenbj
I'm sure we'll cope fine until then. Eclipse 3.2 is worth the pain. Should this be raised in Jira or something? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955446#3955446 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&

[JBoss-user] [JBoss jBPM] - Re: Class chooser for ActionHandler not working in designer

2006-07-05 Thread hoogenbj
Wow, that was quick! I tried the options you suggested, including a few other combinations, but still no luck. I remember that in Eclipse 3.1.2 it would work once I've pasted in the fully qualified class name at least once. View the original post : http://www.jboss.com/index.html?module=bb&op=

[JBoss-user] [JBoss jBPM] - Class chooser for ActionHandler not working in designer

2006-07-05 Thread hoogenbj
Hi, Apologies in advance if I'm duplicating a post. I did search for this. When I try to look up an ActionHandler I created through the handler page of the properties dialog for an action I added on a node's "node-enter" event, the class chooser only turns up classes in the jbpm-3.1.1.jar. I kno

[JBoss-user] [JBoss jBPM] - Re: Different SessionFactory for JBPM and Application - same

2006-05-16 Thread hoogenbj
Why go to that much trouble? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3943710#3943710 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3943710 --- Using Tomcat but

[JBoss-user] [JBoss jBPM] - Re: Different SessionFactory for JBPM and Application - same

2006-05-16 Thread hoogenbj
Yes. I use two databases; one for jBPM and one for the domain data model. There are two different database connections, but they both are part of the same distributed transaction. My stateless session bean takes care of that. Regards Johan View the original post : http://www.jboss.com/index.htm

[JBoss-user] [JBoss jBPM] - Re: Different SessionFactory for JBPM and Application - same

2006-05-16 Thread hoogenbj
Well, maybe that is true today. What if tomorrow you no longer use the same underlying database connection? Perhaps you should make your application not care about it. In my dev environment everything is in the same database, but in my production environment I have two separate databases. My ap

[JBoss-user] [JBoss jBPM] - Re: How to let process stay in node

2006-04-12 Thread hoogenbj
"Koen" wrote:anonymous wrote : For the client program this should be totally transparent. Koen, I'm sure you'll agree with me that the sub process in the following code is not transparent to the client program at all:ProcessInstance pi = jbpmContext.newProcessInstanceForUpdate("super"); |

[JBoss-user] [JBoss jBPM] - Re: How to let process stay in node

2006-04-12 Thread hoogenbj
You can let me worry about the "inconsistency":-) The main thing for me is that the "program" sending the signals should not care whether it is sending the signal to the main process or the sub-process. That, incidentally, happens to be the problem I have with using process-state. In your "tes

[JBoss-user] [JBoss jBPM] - Re: How to let process stay in node

2006-04-11 Thread hoogenbj
Koen, if that was all I wanted to do, then, yes, an actionhandler will give me that. But that's not all I want. My process definition drives a page flow. By definition such a process definition includes wait states - one for every input page at least. At some point I want another (sub) process d

[JBoss-user] [JBoss jBPM] - Re: How to let process stay in node

2006-04-10 Thread hoogenbj
Thank you Koen. A transition from the node to itself is ok if you want to keep executing the node until some condition changes, but not if you want to wait in the node until some condition changes. See, I want the node to get the signal and pass it through to the sub-process, but itself must wa

[JBoss-user] [JBoss jBPM] - Re: How to let process stay in node

2006-04-09 Thread hoogenbj
Hi, I posted this some time ago: "Hi Everyone I want to have a node which executes a process for every item in a list. What complicates things is that only one item must be processed per signal. I thought I could do it with a custom actionhandler on a node and just not call context.leaveNode()

[JBoss-user] [JBoss jBPM] - How to let process stay in node "for ever"?

2006-04-04 Thread hoogenbj
Hi Everyone I want to have a node which executes a process for every item in a list. What complicates things is that only one item must be processed per signal. I thought I could do it with a custom actionhandler on a node and just not call context.leaveNode() until all the items are done. On the

[JBoss-user] [JBoss jBPM] - Re: JBPM and jdk1.5

2006-03-03 Thread hoogenbj
I've been using JBPM together with jdk1.5 since JBPM 3.0.2 without hassles Regards Johan View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3927744#3927744 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3927744

[JBoss-user] [JBoss jBPM] - Re: jbpm 3.1 Monitoring

2006-02-16 Thread hoogenbj
Hi there I think it should not be jBPM's responsibility to decide who should and should do whatever. jBPM is the engine, or the library. Your application should take care of all that stuff. In my case, jBPM is my workflow and pageflow engine, and I have an extensive implementation of J2EE roles

[JBoss-user] [JBoss jBPM] - Re: EAR-based ProcessDefinition deployment

2006-01-11 Thread hoogenbj
Now we are. I see no other way but for you to use that version number. You can set it in code when you load the process definition. ... JbpmSession jbpmSession = jbpmSessionFactory.openJbpmSession(conn); try { // ... and begin a transaction on the persistence session jbpmSessio

[JBoss-user] [JBoss jBPM] - Re: EAR-based ProcessDefinition deployment

2006-01-11 Thread hoogenbj
I'm not sure I understand what you mean with Hibernate version numbers The version number I'm talking about is the version of the process definition. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3916870#3916870 Reply to the post : http://www.jboss.com/in

[JBoss-user] [JBoss jBPM] - Re: EAR-based ProcessDefinition deployment

2006-01-11 Thread hoogenbj
... I agree with Koen about using a servlet. I do so myself. Inside a war inside the ear. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3916859#3916859 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3916859 --

[JBoss-user] [JBoss jBPM] - Re: EAR-based ProcessDefinition deployment

2006-01-11 Thread hoogenbj
Yes, you will have to keep track of the version number. But you do use cvs (or something) and ant don't you? Then you will have your processdefinition.xml and your properties file in cvs. And the properties file goes into the ear. This way only one file gets deployed (the ear) and you "only" hav

[JBoss-user] [JBoss jBPM] - Re: EAR-based ProcessDefinition deployment

2006-01-11 Thread hoogenbj
How about your static initializer checks to see if the processdefinition already exists with a specific version number (which you get from a property in a properties file). If not, then you load it (from the processdefinition.xml file in the ear). View the original post : http://www.jboss.com/

[JBoss-user] [JBoss jBPM] - Re: EAR-based ProcessDefinition deployment

2006-01-11 Thread hoogenbj
Hi Rainer I've taken a completely different approach. I use the gpd to edit my process definitions from within eclipse, and then I have an eclipse launch configuration that can load any process definition straight into the database given a parameter (the process definition's name). The class inv

[JBoss-user] [JBoss jBPM] - Re: Transaction demarcation with EJB/CMT

2006-01-10 Thread hoogenbj
No transaction stuff - leave that to the container. Yes close the jBPMSession and Yes flush the hibernate session. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3916804#3916804 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=repl

[JBoss-user] [JBoss jBPM] - Re: Jbpm in websphere - How ?

2005-12-01 Thread hoogenbj
I decided not to use a .sar or .par in JBoss, so my experience in JBoss should be similar to how I would do it in WebSphere. I would package the jBPM jar files, the hibernate.cfg.xml (minus the hibernate properties, because I use a different database), my own hibernate.properties and the rest o

[JBoss-user] [JBoss jBPM] - Re: Jbpm in websphere - How ?

2005-12-01 Thread hoogenbj
What errors are you getting? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910187#3910187 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3910187 --- This SF.net emai

[JBoss-user] [JBoss jBPM] - Re: Where is the async stuff??

2005-11-30 Thread hoogenbj
Yip! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3909931#3909931 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3909931 --- This SF.net email is sponsored by: Splu