hello I am using jsf 2.0, hibernate and Spring in my project and now i need to implement JBPM(JBOSS) and totally i am new to jbpm and using glassfish server so how can i add this stuff...
...
Hi,
I'm using the process definition language jPDL from the JBoss Workflow engine : jBPM.
I want to integrate a very simple process definition graph : Basically, I have a main process definition (simple/processdefinition.xml) including :
a Start node,
a Process State node,
an End node.
Here is the definition of the graph :
<p...
Using JBPM and Freemarker...
I need to put on the jbpm context the list of checkboxex that a user selects in a .ftl page.
My code looks like:
<table border="0">
<#list keyNames as key>
<tr>
<td><input type="checkbox" name="selectedKeys" value=${key} /></td>
<td>${key}</td> ...
How to configure jbpm with websphere?
...
Hello, I'm new to jBPM and I wonder how to add a database or filesystem listener. For example, if a new user is added to the database I want the workflow to start. Or when a new file is added to some folder I want a node in the workflow send an e-mail to somebody. I searched the internet but couldn't find anything. Any help is much appre...
Hi,
I've installed jBPM 4.4 and it looks neat. I've edited a little example process using Signavio, and I'd like to deploy it on the demo server (ant demo.setup.jboss) so that I can see how it works. But I can't figure out how to do that.
I feel like I'm missing something obvious...
Is the .jpdl.xml file all you need for a very basi...
Hi,
I am using jbpm 3.2.Also i am using jbpm console & mysql as db on Tomcat 6.
I have created a sample workflow.Now i want to create a web service out of it & expose it to some third party application.
Does anyone know how i can do it.
Any help will be highly appreciated.
Thanks.
...
Hi,
I have written a jbpm workflow which calls jbpm timer in a state as below:
<state name='LoginReminderScheduler'>
<timer name="userLoginReminder" duedate="10 seconds" repeat="yes" >
<action class="com.jindal.km.jbpm.NotifyAndReminderWorkflowActionHandler"/>
</timer>
<transition name="toEnd" to="end"></transit...
Hi all,
At first place, I have been learnt that the developers of "Jbpm" is transfered to "Activity Bpmn 2" in recent times (ex: Tom).
What the important thing I am wondering about is whether the support for Jbpm will be over or not.. Besides, I would be glad to hear your ideas about if the improvements of Activity Bpmn will make it bet...
I just got a project which I need to implement lots of workflows, and I am considering to use jbpm engine to implement those workflow, so I want to know is their limits which I need to think through before useing jbpm engine , or any alternates ?
Our workflow is something like following:
user fill in the application form => assistant ma...
It is clear in the title, I would be glad to hear the main differences between them. Thanks.
...
Hi.
We have a production system that uses a lot of Serialization. What be basically do is store an object called ProcessData in the jbpm database as byte array. Thus this is serialized.
Consider the following Object.
public class ProcessData implements Serializable {
private static final long serialVersionUID = -4859440951531011062L...
Hi,
Can I use JBPM to control the business flow in a PHP application?
I have downloaded an open source applciation which is developed in PhP. Now I want to control the few business flow by using any open source BPM.
Can you suggest me some any open source BPM which can control the PhP applications?
Thanks
...
I need to evaluate the jbpm workflow engine at this time, after read the documentation I got following questions, if someone can point me any hints will be greatly appreciated(sample code for these questions is preferable)!
I know jbpm can generate the UI for task with the help of eclipse plugin, is it easy to modify the generated UI...
WorkflowRuntime workflowRuntime = new WorkflowRuntime();
ExternalDataExchangeService dataExchangeService;
dataExchangeService = new ExternalDataExchangeService();
workflowRuntime.AddService(dataExchangeService);
PaymentProcessingService paymentProcessing;
paymentProcessing = new PaymentProcessingService();
dataExchangeService.Add...
I have a mayor problem with installing plugins in eclipse. I'm using ubuntu 10.04 64 bit and I installed:
Eclipse SDK
Version: 3.6.0
Build id: I20100608-0911
(Not by using the apt-get, via apt-get I get galileo, but that version didn't work as well)
The Plugin I want to install is: http://sourceforge.net/projects/jbpm/files/jBPM%203/...
Is there any JCA Resource adapter available for JBPM which can be used? How is JBPM used in production environment where we dont have Jboss App server?
...
Hi people,
I have installed jbpm-4.4, connected jboss-5.0.0.GA to JBOSS- JBOSS-CONSOLE WEB APPLICATION through MSSQL SERVER 2005 and
for some strange reason I had this message "createQuery is not valid without active transaction".
I already searched in the web for the solution but unfortunately I didn´t find something that could help...
How to obtain spring context from within EventListener instance which gets notified following this transition of process:
<transition g="-36,11" name="A" to="B">
<event-listener class="com.test.handlers.MyRequestHandler">
</event-listener>
</transition>
I want to be able to do something like the following in my
@Override
publi...
Hi there.
I have a pageflow with 4 steps,
And I want to add a rule/state in the page flow so that if I return a navigation that is not defined in the page flow, it will go to a failsafe state.
The goal of this is to be able to define a template with some predefined links, and be ab...