-
1. jBPM5 - JMS integration
Mauricio Salatino Mar 16, 2011 11:40 AM (in response to Sasi R)Hi There..
jBPM is agnostic from JMS. You can read your JMS messages as you usually do it and then start a process from them.
What kind of use case do you have?
Greetings.
-
2. jBPM5 - JMS integration
Sasi R Mar 16, 2011 11:43 AM (in response to Mauricio Salatino)Whenever there is an exception in regular processing, the XML message will be posted in the queue. Workflow is expected to read the messages from the queue and assign it to the specific team.
Can this be implemented using jBPM?
-
3. jBPM5 - JMS integration
Mauricio Salatino Mar 16, 2011 11:47 AM (in response to Sasi R)1 of 1 people found this helpfulTotally,
You can start a process each time that you get a message in the error queue. Is that what you are looking for?
Until that point the only relation between jBPM and JMS is the start process. So you can get the message from the Queue using java code and then start a process normal.
Greetings.
-
4. jBPM5 - JMS integration
Sasi R Mar 16, 2011 11:51 AM (in response to Mauricio Salatino)Yes, thats the scenario I am looking for.
So you are sayign i can just write a normal JMS listener and can start the process from there and pass the required parameters. Also, Can Message Event or any service task be used here in any way?