[jboss-user] [jBPM Users] - Deploy a project

2009-10-02 Thread puag
hello, i´m a begginer with jbpm and I need to deploy the jbpm project on a jboss server without using the eclipse plugin. Can you tell me the way please? Thank you. View the original post : http://www.jboss.org/index.html?module=bbop=viewtopicp=4258313#4258313 Reply to the post :

[jboss-user] [jBPM Users] - Re: Jbmp task recovery

2009-09-29 Thread puag
i made : command = new GetTaskListCommand(aUsuario, true); result =(ArrayList)remoteCMDService.execute(command); for( Object task : result ) { and here i filter and order tasks by (TaskInstance)task).getProcessInstance().getContextInstance().getVariables() } but if i have too task java will

[jboss-user] [jBPM Users] - SignalCommand problems

2009-09-29 Thread puag
Good morning, I'm starting with jBPM and need to move a task that this stop. I do it: SignalCommand signalCommand = new SignalCommand(); signalCommand.setTokenId(processInstance.getRootToken().getId()); signalCommand.setVariables(aWorkItem); remoteCMDService.execute(signalCommand); but,

[jboss-user] [jBPM Users] - Jbmp task recovery

2009-09-28 Thread puag
Hello, i´m starting with jbmp, and i´m using a RemoteCommandService to execute my commands on server. Now i need to recover all task filter by actor and by the processinstance variables but with: command = new GetTaskListCommand(actor, true); result = (ArrayList)