Hi,
I would like to invoke a process every 3 minutes to check for documents I can use EJB or SOAP. Can any one help me on how to invoke a process automatic every 3 minutes.
Thank you,
Solved! Go to Solution.
Views
Replies
Total Likes
Presume:
P1 is the process you want to invoke every 3 minutes
create a process named P2.
In the process P2:
1. add a Sub Process activity and define to invoke P1.
2. add a Wait Point activity and set 3 minutes.
3. connect the route back to sub process (just make a loop)
now invoke the process P2 manually (by right click, then Invoke) within workbench.
Your P1 will get invoked by the helper process P1 every 3 minutes.
Nith
Views
Replies
Total Likes
Actually what I need is to invoke a process automatic every 3 minutes
Views
Replies
Total Likes
Presume:
P1 is the process you want to invoke every 3 minutes
create a process named P2.
In the process P2:
1. add a Sub Process activity and define to invoke P1.
2. add a Wait Point activity and set 3 minutes.
3. connect the route back to sub process (just make a loop)
now invoke the process P2 manually (by right click, then Invoke) within workbench.
Your P1 will get invoked by the helper process P1 every 3 minutes.
Nith
Views
Replies
Total Likes
Thank you so much for your answer. I was thinking the same way but I thought may be I can set something from the adminui to invoke the process.
Views
Replies
Total Likes
Hi,
You can write a java application to run the main process automatically if do not wish to invoke it manually.
Have a look at http://www.ibm.com/developerworks/java/library/j-schedule.html, this provides scheduler library which you can use to invoke your java program
which in turn invokes your livecycle process.
Regards,
Vikram
Views
Replies
Total Likes
This post could be useful: http://blogs.adobe.com/livecycle/2010/12/how-to-invoke-a-livecycle-process-periodically.html
Jasmin
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies