[JBoss-user] [JBoss jBPM] - Re: event registration for JBPM?

2005-12-14 Thread finska2
Hi all
Thanks for your replies - this is kind of what I expected (i.e. having to code 
up your own incoming event triggers to fit into jBPM process flow), but I'm 
just in the evaluation of jBPM as a fit for our requirements so expertise is 
much appreciated!

I suppose I thought that there may have been some sort of event 
registration/mgmt plug-in for jBPM as some of the examples refer to "incoming 
emails" as triggers to movemenmt in the process chain - but I suppose, as 
befire,  this is coded up by the jBPM developer also. 

Thanks again for your input
Finska

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: event registration for JBPM?

2005-12-13 Thread [EMAIL PROTECTED]
I also think the external polling is the simplest and most flexible solution. 
Besides that, you will want to correlate the file with the 
processinstance/token anyway, so using the tokenid in the filename or have a 
correlation table where this is done are two possible solutions.

Regards,
Koen

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: event registration for JBPM?

2005-12-13 Thread RAlfoeldi
or...

write a timer that periodically checks for the file and only continues when 
present. (then you wouldn't need a thread :-)

personally i'd go for the external polling mech. you would have to mark your 
token in some kind and then query it in order to signal the correct token. but 
maybe you can code the tokenId or something else into the filename.

Rainer

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: event registration for JBPM?

2005-12-13 Thread sforema
Is there a way to register external events for jbpm, such that they cause a 
"state transition"? 

jBPM is a workflow engine. It isn't designed to listen for events and react to 
them. That is up to the developer.

You could slice this two ways: 

1. write an action that looks for the file and signals the token to continue 
(your suggestion). The process isn't in a wait state, but is running your code 
waiting for the file.

2. put the process in a wait state and have a separate proces look for the 
file. When the file was located it would signal the token with the same 
results. The trick would be knowing the token_id, so I'd go with option 1.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user