[jboss-user] [JBoss jBPM] - Re: Modifying a workflow instance in flight

2009-03-16 Thread kamleshkr
Hi Ronald, Thanks for your quick response (as expected :) ) Can you please tell me how can I achieve this? Which API I can use for implementing this functionality? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4218215#4218215 Reply to the post : http://ww

[jboss-user] [JBoss jBPM] - Modifying a workflow instance in flight

2009-03-16 Thread kamleshkr
I would like to modify an instance of a workflow (not the workflow definition) on the fly by adding/removing task nodes in JBPM. Ex if there is a workflow definition with nodes A-> B-> C-> D and there are 10 instances running, is it possible to change one of these instances a-> b-> c-> d by addi

[jboss-user] [JBoss jBPM] - Re: how to save processinstance

2008-05-12 Thread kamleshkr
"JBPM generally takes this approach - if multiple nodes and transitions can be executed synchronously, by default it won't commit any until all are done." Can you tell me how to change this default behaviour of jBPM?. I want to save the processinstance after execution of each node. Can i do anyt

[jboss-user] [JBoss jBPM] - Saving ProcessInstance when JBoss is shutdown

2008-05-02 Thread kamleshkr
Hi, I have a web application which instantiates a workflow, i am closing the jbpmContext in the finally block. But the problem is when workflow is running and JBoss is shutdown at that time, the processInstance is not save as the code does not return to the finally block. But when i tried to st

[jboss-user] [JBoss jBPM] - Lifecycle of actionhandler

2008-04-22 Thread kamleshkr
Hi, I want to know when does jbpm instantiate the action handler and when does it remove that particular instance from memory? Actually, i have written a web application which calls jbpm workflow. I have deployed my application on JBoss and used MySQL as the database of jbpm. When i use a moni

[jboss-user] [JBoss jBPM] - Re: Getting the previously executed node...

2008-04-02 Thread kamleshkr
Thanks, I got your point. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4141149#4141149 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4141149 ___ jboss-user mailing list jbos

[jboss-user] [JBoss jBPM] - Re: Getting the previously executed node...

2008-04-02 Thread kamleshkr
or is there any other way to continue the workflow from previous node? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4140926#4140926 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4140926

[jboss-user] [JBoss jBPM] - Getting the previously executed node...

2008-04-02 Thread kamleshkr
Hi All, Consider the following situation: In my workflow, there is a decision node first, the decision node checks the condition and redirects the workflow to nodeYes or nodeNo accordingly. Both nodeYes and nodeNo has a transition to node3. Hence depending upon the condition, the nodeYes or No

[jboss-user] [Installation, Configuration & DEPLOYMENT] - How to separate web server and application server

2008-02-20 Thread kamleshkr
Hi, I have an application deployed on JBoss. I want to separate the presentation layer from the buisness layer on two machines. I have no idea about how to have these two layers deployed on different physical locations. Please tell me how to do that and give me some pointers regarding the same.

[jboss-user] [JBoss jBPM] - Re: Setting ProcessVariable as a

2007-12-06 Thread kamleshkr
Hi, In spite of setting the 'to' attribute in the processdefinition.xml, I have found other way out. I have tried custome mail class, but jbpm does not delegates the call to my custom mail class, rather it calls its own Mail.class only. I have taken a normal node, and written my ActionHandler fo

[jboss-user] [JBoss jBPM] - Re: Setting ProcessVariable as a

2007-12-04 Thread kamleshkr
Please tell me can i use EL in Processdefinition.xml? And if yes, what will be the EL for contextInstance.getVariable("EmailAddress") ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4110121#4110121 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss jBPM] - Setting ProcessVariable as a

2007-12-03 Thread kamleshkr
Hi all, I have a simple query regarding the access of a process variable in mail node. I have used executionContext.getContextInstance().setVariable("EmailAddress", "[EMAIL PROTECTED]"); in one of my action class. Now i want to use this variable for sending mail using mail node. Can you tell

[jboss-user] [JBoss jBPM] - Re: posting data to an external web application

2007-11-16 Thread kamleshkr
I have visited the blog http://weblogs.java.net/blog/edgars/archive/2007/08/understanding_j_1.html Here i found the way. But i am getting one exception while implementing that, My Servlet code is: protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletExce

[jboss-user] [JBoss jBPM] - posting data to an external web application

2007-11-15 Thread kamleshkr
Hi, I have to post some data to an external web page from the ActionHandler java class. So please tell me the way to do that by giving me small code snippet. Can i get the HttpServletRequest and HttpServletResponse objects in my ActionHandler class? View the original post : http://www.jboss.c

[jboss-user] [JBoss jBPM] - How to deploy a process archive file?hI,

2007-11-05 Thread kamleshkr
Hi, I want to know what the eclipse plugin does while deploying a process archive. Instead of deploying using eclipse, i have just created a local process archive file. Now how and where to deploy this websale.par file? Can i put this *.par file somewhere in my web application and how can i use

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl-suite-3.2.1 Source Code

2007-10-29 Thread kamleshkr
A part of the error i got is as below: Login on the proxy with user name kamlesh_kumar CVSGrab version 2.3 starting... When attempting to connect to cvsroot, got error: host parameter is null When attempting to connect to http://fisheye.jboss.org/browse/JBPM/, got error: Error 407 when reading htt

[jboss-user] [JBoss jBPM] - Re: jbpm-jpdl-suite-3.2.1 Source Code

2007-10-28 Thread kamleshkr
Hi, I have tried a lot to download the source file using cvsgrab as per the instructions given above, and also i tried to use wincvs for that, but i am unable to download the source code of jbpm-console application. can anyone help me out as i am in urgent need of the source code. Can anyone mai

[jboss-user] [JBoss jBPM] - Re: Communication between JBoss jBPM application and a web a

2007-10-24 Thread kamleshkr
Sorry by *.jsf files i mean the source code of the class file to which the *.jsf files are mapped in web.xml View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4098253#4098253 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4

[jboss-user] [JBoss jBPM] - Re: Communication between JBoss jBPM application and a web a

2007-10-24 Thread kamleshkr
Where is the jbpm-console source code. I have the jbpm-console.war, but after unzipping it i find no *.jsf files in it View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4098242#4098242 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode

[jboss-user] [JBoss jBPM] - Re: Communication between JBoss jBPM application and a web a

2007-10-24 Thread kamleshkr
I understood a bit about how to call the process from a servlet. But in order to run this piece of code how should I integrate my jbpm application which is in eclipse workspace into my web-application ? Please tell me the steps. . View the original post : http://www.jboss.com/index.html?module=

[jboss-user] [JBoss jBPM] - Re: Communication between JBoss jBPM application and a web a

2007-10-22 Thread kamleshkr
Hi Ronald, Thanks for your response.. I am still not able to get it. I have seen the testcase class. In this class the ProcessDefinition is instantiated by parsing the corresponding xml file and then ProcessInstance is created using the ProcessDefinition. But the thing is, what code i will write

[jboss-user] [JBoss jBPM] - Communication between JBoss jBPM application and a web appli

2007-10-22 Thread kamleshkr
Hi, I have to trigger my jBPM application from a web application deployed in JBoss. In other words if i want to invoke my jBPM application from a JSP or Servlet and vice versa, what steps should i follow? Thanks Kamlesh View the original post : http://www.jboss.com/index.html?module=bb&op=v