[jboss-user] [JBoss jBPM] - Re: Intalio vs jBPM

2009-07-28 Thread swatis
BA with less technical knowledge but more of functional knowledge try to map business requirements into process model. Technical guy deals with technical aspects of process like integration with other applications. Intalio uses BPMN as process modeling language. got 52 BPMN notations (standard)

[jboss-user] [JBoss jBPM] - Re: Generating JPDL Programmatically

2009-07-27 Thread swatis
which one is this old language? if its XML then as Ronald suggested you can use XSLT, java XML API like jdom to generate jpdl(jpdl is nothing but XML file). So you need to understand both formats. Basically you need converter which will do conversion. View the original post : http://www.jboss.

[jboss-user] [JBoss jBPM] - Re: [jBPM 4] Mai templates context variables

2009-07-27 Thread swatis
sorry msg didnot come properly use just wild guess:) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4246229#4246229 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4246229 _

[jboss-user] [JBoss jBPM] - Re: [jBPM 4] Mai templates context variables

2009-07-27 Thread swatis
use just wild guess:) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4246226#4246226 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4246226 ___ jboss-user mailing list jbos

[jboss-user] [JBoss jBPM] - Re: Custom mail class

2009-07-23 Thread swatis
i tried with extending existing mail class.. then i put this class in classes folder of jbpm-console war. and set mail.class.name property to custom class... it worked... start the services after making changes View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
Purpose of having "notify" attribute in task-node is to send "task-assign" template mail to the assignee. Now, you can achieve the same thing i.e. you can send notification mail to the assignee but dont use "notify" attribute instead use "mail" action which will send your custom template mail to

[jboss-user] [JBoss jBPM] - Re: Mail node template

2009-07-23 Thread swatis
Hmm... I tried example given by you and was able to successfully execute the same. What error you are getting? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245465#4245465 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
| | | | | | | Now here instead of using action ref-name you can use mail action also. this works. :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245481#4245481 Reply to the post : http://www.jboss.org/index.

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
I forgot to mention one point is if you use expressions like "#{taskInstance.name}" it gives you the task name. So your main concern is solved. :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245485#4245485 Reply to the post : http://www.jboss.org/index.h

[jboss-user] [JBoss jBPM] - Re: Mail node template

2009-07-23 Thread swatis
in example you used "mail name="notification" template="blah-blah" right. And in action tag you used "notification" as ref-name "Mail" is "action" nto "node". So its perfectly all right to use the same. I got mail with same configuration. View the original post : http://www.jboss.org/index.html

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
I said you can use taskInstance.id, taskInstance.name expressions in custom mail template and you will get the values as well. Use event "type" as "task-assign" View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245501#4245501 Reply to the post : http://www.j

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
Please see the sample code from prev reply. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245509#4245509 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245509 ___ jboss-user

[jboss-user] [JBoss jBPM] - Re: support template for task assignment

2009-07-23 Thread swatis
welcome boss :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4245516#4245516 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4245516 ___ jboss-user mailing list jboss-user@list

[jboss-user] [JBoss jBPM] - Re: running jBMP on Weblogic Server 10.x

2009-06-30 Thread swatis
"smart_umesh_123" wrote : Hi, | | i am also evaluating Intalio BPM also. I found that it has good support of Business Activity Monitoring (BAM) and LDAP. | | How jBPM 3/4 has support of BAM ? I heard of BAM Cosole in jBPM is that good enough to do business process monitoring? | | i

[jboss-user] [JBoss jBPM] - Re: running jBMP on Weblogic Server 10.x

2009-06-30 Thread swatis
"smart_umesh_123" wrote : thanks for the response. | | | Also can i call external web service from the jBPM process? | | thanks | Chintan | | Yes you can write ws client java code in action handler class and attach this action handler class to "node" activity of process. Vie

[jboss-user] [JBoss jBPM] - Re: Best way to get audit or history information

2009-06-25 Thread swatis
to get list of process instances for particular process provide processdefinition id Query query = session.getNamedQuery("GraphSession.findAllProcessInstancesForADefinition"); | query.setLong("processDefinitionId", processDefinitionId); | java.util.List processInstances = query.l

[jboss-user] [JBoss jBPM] - Re: JBPM assign

2009-06-25 Thread swatis
or | or in assignment handler class in assign method use setActorId method View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4240129#4240129 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4240129 __

[jboss-user] [JBoss jBPM] - Re: Ora-Apps integration

2009-06-25 Thread swatis
to integrate with any application, first understand options available for integration(like API, database connection, web service consumption). then write code for db conn/ws client/api and put this code in actionhandler class. attach this actionhandler class to "node" type activity in your proce

[jboss-user] [JBoss jBPM] - Re: Best way to get audit or history information

2009-06-25 Thread swatis
in web console, you can get the information like number of process instances running, ended, suspended and so on... For each process instance tasks completed, running, assigned user, started date, ended date, etc. this information is available. i will give you piece of code to get the same info

[jboss-user] [JBoss jBPM] - Re: query about jbpm-console

2009-06-09 Thread swatis
go to deploy folder there you will get jbpm-console.war file make changes in this war file's Xhtml pages. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4236540#4236540 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4236

[jboss-user] [JBoss jBPM] - Re: How to not end task while there is still users to verify

2009-06-09 Thread swatis
I guess verify task is colloborative task. In jbpm i don't know whether we can define colloborative task. But you need to modify your workflow such way that you can still achieve the same functionality. Use Fork and join for your "verify task" create two similar structured tasks and assign to tw

[jboss-user] [JBoss jBPM] - Re: jBPM timer's Action getting locked

2009-06-04 Thread swatis
hmm yes this definitely wont solve the problem but we can get the cause of error View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4235323#4235323 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4235323 __

[jboss-user] [JBoss jBPM] - Re: jBPM timer's Action getting locked

2009-06-04 Thread swatis
try to reduce the time to seconds. like 2 seconds then you dont have to for long time... and now check whether action gets executed after 2 seconds. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4235305#4235305 Reply to the post : http://www.jboss.org/index.

[jboss-user] [JBoss jBPM] - Re: Where ist the Websale Example Application?

2009-05-29 Thread swatis
But Ronald, I tried many times to install different former versions > 3.2.6 using installer. Even though I selected install jboss server, still asked to give existing jboss application server directory path. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=42341

[jboss-user] [JBoss jBPM] - Re: Where ist the Websale Example Application?

2009-05-29 Thread swatis
make use of GPD and deploy processes using web console(by creating par files) or from GPD itself View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4234070#4234070 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4234070 _

[jboss-user] [JBoss jBPM] - Re: Eclipse plugin for jBPM - Misplacement of Node's in proc

2009-05-24 Thread swatis
there is something called as gpd.xml which takes care of the position of nodes (that is X, Y coordinates, width and height, etc.) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4232915#4232915 Reply to the post : http://www.jboss.org/index.html?module=bb&op=

[jboss-user] [JBoss jBPM] - Re: Join Problem

2009-05-21 Thread swatis
in your processdefinition xml "controller class attribute is blank" how come you were able to complete the two parallel task? after removing controoler class tag from xml the process instance ended sucussfully. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=

[jboss-user] [JBoss jBPM] - Re: JBPM & Simulation

2009-05-19 Thread swatis
Sure Ronald. :) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231841#4231841 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231841 ___ jboss-user mailing list jboss-user@list

[jboss-user] [JBoss jBPM] - Re: JBPM & Simulation

2009-05-19 Thread swatis
Got it. Thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231801#4231801 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231801 ___ jboss-user mailing list jboss-user@lists

[jboss-user] [JBoss jBPM] - Re: JBPM & Simulation

2009-05-18 Thread swatis
Sorry Ronald I didn't get it. :(... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231777#4231777 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231777 ___ jboss-user mailing

[jboss-user] [JBoss jBPM] - Re: ProcessClassloader question

2009-05-18 Thread swatis
Have put entire stack trace here? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231768#4231768 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231768 ___ jboss-user mailing li

[jboss-user] [JBoss jBPM] - Re: JBPM & Simulation

2009-05-18 Thread swatis
Thanks Ronald. In process definition we can mention duedate, this information can be used to run the simulation. But there is seperate file created to put simulation factors for the process. I agree GPD plays no role in this and in docs also no where mentioned it does. I might be wrong about thi

[jboss-user] [JBoss jBPM] - Re: JBPM & Simulation

2009-05-18 Thread swatis
The information I want is to put simulation data on process and then run this simulation using GPD. Create scenarios for the same. Get the result of the simulation for further analysis. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231700#4231700 Reply to t

[jboss-user] [JBoss jBPM] - Re: JBPM & Simulation

2009-05-18 Thread swatis
Yes Ronald View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231613#4231613 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231613 ___ jboss-user mailing list jboss-user@lists.jbo

[jboss-user] [JBoss jBPM] - Re: Mail node with file attached

2009-05-18 Thread swatis
what he meant is to extend the existing Mail class and put your attachment code in this custom mail class and use this class as actionhandler class. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231570#4231570 Reply to the post : http://www.jboss.org/index.

[jboss-user] [JBoss jBPM] - JBPM & Simulation

2009-05-17 Thread swatis
Can we put simulation information in process definition xml file? Can we run this simulation and generate the reports? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231515#4231515 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode

[jboss-user] [JBoss jBPM] - Condition on transition

2009-05-16 Thread swatis
Node can have n number of transitions. Can we put condition on transition and if node is not decision-node? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231435#4231435 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=42

[jboss-user] [JBoss jBPM] - Re: Global Actions

2009-05-16 Thread swatis
thanks :)... but how about customizing the code View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231433#4231433 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231433 ___ jboss-u

[jboss-user] [JBoss jBPM] - Re: Global Actions

2009-05-15 Thread swatis
why not? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4231360#4231360 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4231360 ___ jboss-user mailing list jboss-user@lists.jboss

[jboss-user] [JBoss jBPM] - Re: jBPM 4 start parameters

2009-05-13 Thread swatis
| | xyz | 21 | | sorry didnt put code in code tags View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230980#4230980 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4230980 __

[jboss-user] [JBoss jBPM] - Re: jBPM 4 start parameters

2009-05-13 Thread swatis
and you want to provide some parameters to that action handler class you can do that... lets say you wnat to pass name, age as params to class xyz 21 and in class method you can access this as instance variable. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopi

[jboss-user] [JBoss jBPM] - Re: jBPM 4 start parameters

2009-05-13 Thread swatis
you want to run some java code in process that code you can put in action handler class. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230978#4230978 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4230978

[jboss-user] [JBoss jBPM] - Re: ProcessClassloader question

2009-05-13 Thread swatis
I guess the action handler class is referring classes which are not present in classpath. but surprised to see that searching for classes/long.class file... can you please put your action handler class code? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
| | | | | | | | | | | | | No need to keep namespace blank. :). View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230975#4230975 Reply to the post : http://www.

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
ok lets try this one dont put anything in xmlns attribute...leave it blank View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230803#4230803 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4230803 ___

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
hmm.. you created another task in task-node ... in the task "prev" only put timer tag View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230796#4230796 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4230796

[jboss-user] [JBoss jBPM] - Re: Linking subprocess with main process?

2009-05-13 Thread swatis
Assuming you know how to put process state node in main process and you have deployed the subprocess before main process then there is one thing you need to do is make change in org.jbpm.graph.node. DbSubProcessResolver class method | JbpmContext jbpmContext = jbpmConfiguration.createJbpm

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
because there is no action class defined in action tag attribute "class". Put your timer tag inside task tag. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230778#4230778 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
put timer tag inside you task tag which is child node of task-node | | | | | | | | | Yes we can add this in xml file only. GPD doesnotr provide user inteface for configuration. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230776

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
and you can modify the existing template as you please... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230749#4230749 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4230749

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
you are right about reminder template is fixed but the example i gave uses mail action not reminder action. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230743#4230743 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=42

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
you didn't get what i said..I said we can use timer in node and we can define mail action in this timer. This mail action can pick up any template defined in attribute "template" of mail from jbpm.mail.templates.xml file. And reminder tag which we use in processdefinition.xml picks up "task-re

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
you can define as many templates you want in jbpm.mail.templates.xml . use the name of template present in this file in your mail action tag. read documents... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230729#4230729 Reply to the post : http://www.jbo

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-13 Thread swatis
| | | | | | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230726#4230726 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4230726 __

[jboss-user] [JBoss jBPM] - Re: Timer for mail node or task node??

2009-05-12 Thread swatis
don't use mail node. second in task node use timer, put mail action tag inside this timer tag.. no need to create seperate mail node. use mail action in timer tag. It will take mail action after every 20 seconds. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopi

[jboss-user] [JBoss jBPM] - Re: Mail Node Problem

2009-05-12 Thread swatis
sorry i made mistake while putting this topic the part is inside parent code should be outside . View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230356#4230356 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4230356 _

[jboss-user] [JBoss jBPM] - Mail Node Problem

2009-05-12 Thread swatis
In Mail class, Session session = Session.getDefaultInstance(mailServerProperties, null); | If the mail server requires user authentication, this condition is not handled in mail class. So I created one custom class which extends Mail class. | if(auth) { | session = S

[jboss-user] [JBoss jBPM] - Re: Join Problem

2009-05-12 Thread swatis
you are right about the signal method. I tried another small process with action handlers.In action hanlder classes i used once leaveNode method it worked perfectly. But when I changes leaveNode method to signal method got the same problem. thanks .. able to fix this one... View the original p

[jboss-user] [JBoss jBPM] - Re: Join Problem

2009-05-12 Thread swatis
ok i iwll try to use executionContext.leaveNode() instead of signal method... will update u in few mins... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4230292#4230292 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=423

[jboss-user] [JBoss jBPM] - Re: Join Problem

2009-05-11 Thread swatis
you are right its not complete code... i just put only part of code... in actionhandler i used executionContext.getProcessInstance().signal(); statement at the end. My question is if these two parallel activities gets completed why join node is still waiting to send signal to the next activity

[jboss-user] [JBoss jBPM] - Re: Join Problem

2009-05-11 Thread swatis
| | | | | | getScore | http://localhost:9090/CalculatorApp/CalculatorWebServiceService?wsdl | | | | | | | | | | | |

[jboss-user] [JBoss jBPM] - Re: Grouping Processes & Tasks

2009-05-11 Thread swatis
this may not be proper answer but you can use prefix to mention the module name just before your process name and you can as well query to database to get module instances by looking at the prefix and build jbpm console war make changes into the xhtml pages if possible in jars... View the orig

[jboss-user] [JBoss jBPM] - Re: Instance not of expected entity type -> Flush failed

2009-05-11 Thread swatis
put code here... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229978#4229978 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4229978 ___ jboss-user mailing list jboss-user@lis

[jboss-user] [JBoss jBPM] - Re: Mutiple timers in a task node problem

2009-05-10 Thread swatis
hmm.. did u put any log messages in your second timer task's action handler class? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229934#4229934 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4229934 ___

[jboss-user] [JBoss jBPM] - Join Problem

2009-05-10 Thread swatis
Hi, In a process I'm using fork for parallel activities and one join. After join there is system activity. But when I create instance of process and process completes 2 parallel activities it still stucks to the join node. Its not moving to the next system activity. What could be the problem??

[jboss-user] [JBoss jBPM] - Re: Grouping Processes & Tasks

2009-05-10 Thread swatis
what will you achieve by grouping the processes and tasks? and to whom you want to display these results?? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229931#4229931 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=42

[jboss-user] [JBoss jBPM] - Re: Relation Between Identity and Taskmanagement Components

2009-05-10 Thread swatis
read documents..:) View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229930#4229930 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4229930 ___ jboss-user mailing list jboss-user@l

[jboss-user] [JBoss jBPM] - Re: could not load the delegation class

2009-05-10 Thread swatis
I guess this msg you got it from console... please provide log messages... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229928#4229928 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4229928 ___

[jboss-user] [JBoss jBPM] - jBPM - Human Centric or Integration Centric BPM Product

2009-05-10 Thread swatis
Hi, Just a question. In which category we can put jBPM, Human Centric BPM Product or Integration Centric? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4229925#4229925 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=42

[jboss-user] [JBoss jBPM] - Re: Use of jBPM variables in action handler fields

2009-05-02 Thread swatis
yes i get spaces instead of value after invoking this method View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4227667#4227667 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4227667 __

[jboss-user] [JBoss jBPM] - Re: Process Instace is created - But not able to see that in

2009-05-02 Thread swatis
hey Ronald thanks a lot.. working now.. i saved the processinstance and closed the context. Thanks a lot...:)... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4227666#4227666 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=repl

[jboss-user] [JBoss jBPM] - Re: Use of jBPM variables in action handler fields

2009-04-30 Thread swatis
I got what he said thats what I have used | String evaluate(String expression) { | if (expression==null) { | System.out.println("exp is null"); | return null; | } | VariableResolver variableResolver = JbpmExpressionEvaluator.getUsedVariabl

[jboss-user] [JBoss jBPM] - Process Instace is created - But not able to see that instan

2009-04-30 Thread swatis
Hi, I'm trying to create instance of process. This is my code. | JbpmConfiguration jbpmConfiguration = JbpmConfiguration.getInstance(); | JbpmContext jbpmContext = jbpmConfiguration.createJbpmContext(); | GraphSession l_objGrphSession = jbpmContext.getGraphSession(); |

[jboss-user] [JBoss jBPM] - Re: Use of jBPM variables in action handler fields

2009-04-30 Thread swatis
yes thats what expected right. but its not happening... :(... View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4227483#4227483 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4227483

[jboss-user] [JBoss jBPM] - Re: Use of jBPM variables in action handler fields

2009-04-28 Thread swatis
No, that I know. I can use getContext().getVariable() to get the variables used in process instance. But here my question is how can I use varaibles in text content of element #{taskName} I mean in subject element or any other element what is way to access variables? View the original post : h

[jboss-user] [JBoss jBPM] - Use of jBPM variables in action handler fields

2009-04-28 Thread swatis
Hi, See the code below:- | | | Error E5 encountered in jBPM Process in step #{taskName} | Hi Administrator, | The system has encountered error E5 in step #{taskName}. | Regards | -jBPM Team | swati.satp...@patni.com | | | In above c

[jboss-user] [JBoss jBPM] - Re: 4 Eye Principal - Implementation

2009-04-28 Thread swatis
This is how I implemented. If Task A is completed by UserA then using action handler setting instance variable :"group" with value of "userA" Then When for Task B, used class which implements AssignmentHandler Interface this class will query to see who are the members of group and then elliminate

[jboss-user] [JBoss jBPM] - Re: ActorId & PooledActors

2009-04-15 Thread swatis
Collection l_objClTskInstances = executionContext.getTaskMgmtInstance( ).getTaskInstances(); Iterator it = l_objClTskInstances.iterator(); while(it.hasNext()) {

[jboss-user] [JBoss jBPM] - Re: Group Task Assignment proble- Unable to see task avalaib

2009-04-15 Thread swatis
Martin, thats what I said in earlier replies that link heading on console is "Personal/Group Taks list" but it doesnot displays the task to user even if that actor is present in pooled actors list. Only "manager" using "All Tasks" link can assign task to the anyone of the pooled actor by using l

[jboss-user] [JBoss jBPM] - Re: Group Task Assignment proble- Unable to see task avalaib

2009-04-14 Thread swatis
Hi Peter, Thanks a lot. I have downloaded files from objectX site. I will update once I'm able to fix this problem. Right now I used custom assignment handler class who will read who all are members in group and then using setPooledActors method assigned this task to multiple actors. Now manage

[jboss-user] [JBoss jBPM] - 4 Eye Principal - Implementation

2009-04-13 Thread swatis
Hi, I want to implement 4 Eye Principal. Let me clear few things about this What is this? :- If we have task A, taskB both are assigned to same group. Now lets consider there are 3 users in this group. TaskB is after TaskA in workflow. If userA performs taskA, then other than UserA, all users fr

[jboss-user] [JBoss jBPM] - Re: cannot see the deplooyed process

2009-04-13 Thread swatis
Even I did the same thing I deployed using GPD but that process wasnot available in cosole. So what I did from GPD there is option for "Save Process Achive Locally". I checked that option and saved .par file locally and then using Deploy Process Link from COnsole I provided this file path and th

[jboss-user] [JBoss jBPM] - Re: ActorId & PooledActors

2009-04-13 Thread swatis
You can set pooled actors as well actor also. You can do the following assignable.setPooledActors(new String[]{"userA", "userB"}); assignable.setActorId("userC"); View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4225228#4225228 Reply to the post : http://www.jbo

[jboss-user] [JBoss jBPM] - Re: Group Task Assignment proble- Unable to see task avalaib

2009-04-13 Thread swatis
Hi, Thanks for your reply. As you said task can be assigned to actor or group right. I did the same thing I assigned task to group But lets say If userA is member of Group then he should see that task present in his personal/group task list. To take owenership of that task, that task should be v

[jboss-user] [JBoss jBPM] - Group Task Assignment proble- Unable to see task avalaible o

2009-04-13 Thread swatis
Hi, I'm using 3.2.3 version. I'm using group(testgroup) in task node assignment expression. I have 3 users in "testgroup" but I dont see this task is available to any of the user from group. In pooledActor attibute I see group name but in personal /group task I am unable to see. If I assign o