Patricia Bogoevici [http://community.jboss.org/people/patricia_b] created the discussion
"jBPM5 - Create dynamic user tasks at runtime"
To view the discussion, visit: http://community.jboss.org/message/632323#632323
--------------------------------------------------------------
My question is if it is possible in jBPM5 (and respectively jBPM 5.1) to create new user tasks at runtime when using BPMN2.0 definition.
This is the use case I have:
- the current workflow execution step is a user task. And I need to allow the end user to create a paralel task or tasks, and that will need to happen at runtime, as that kind of decision cannot be taken when designing workflow definition.
thanks,
Patricia
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/632323#632323]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
Aashish Shivhare [http://community.jboss.org/people/aashishshivhare] created the discussion
"web application when deployed in Jboss Server 5.x version is not working"
To view the discussion, visit: http://community.jboss.org/message/563461#563461
--------------------------------------------------------------
Hi all,
Web application when deployed in Jboss Server 5.x version is not working, while it was woking with JBoss 4.x.
When I checked the deployment structure of 4.x it was different from 5.x.
It was giving me Exception,
java.lang.StringIndexOutOfBoundsException: String index out of range: -1
java.lang.String.substring(String.java:1938)
cdac.medinfo.sdk.dcm30_04.utils.DicomConstants.getResourceLocation(DicomConstants.java:743)
When I debug the code, then I found that, it gave me exception when I tried,
class.getResourceLocation
I tried in JBoss 4.x and with Apache Tomcat 6.x it works fine.
Please help me.
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/563461#563461]
Start a new discussion in JBoss Web Services at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]
Koen Aers [http://community.jboss.org/people/koen.aers] commented on
"Forging of the Forge Tools"
To view all comments on this blog post, visit: http://community.jboss.org/community/tools/blog/2011/01/27/forging-of-the...
--------------------------------------------------
Gabriela,
Trying with the latest and greatest build of JBT should resolve this. Let us know if you still see the problem with the latest nightly.
Regards,
Koen
--------------------------------------------------
Rahul Krishnan [http://community.jboss.org/people/rahul.krishnan] created the discussion
"Exception Handler not working in Drools flow(bpmn) but working fine in .rf"
To view the discussion, visit: http://community.jboss.org/message/632741#632741
--------------------------------------------------------------
Hi,
I have tried the fault node in drools flow file and it has worked fine in .rf. Whenever a faultnode is triggered it will search for the fault name and will be caught at the apropriate Exception Handlers. But When am implementing the same in .bpmn the fault node is triggered but the flow is not reaching Exception Handlers ie The flow will exit upon reaching the fault node.
How can i resolve this problem?
I will give the xml format of bpmn here
<?xml version="1.0" encoding="UTF-8"?>
<definitions id="Definition"
targetNamespace=" http://www.jboss.org/droolshttp://www.jboss.org/drools"
typeLanguage=" http://www.java.com/javaTypeshttp://www.java.com/javaTypes"
expressionLanguage=" http://www.mvel.org/2.0http://www.mvel.org/2.0"
xmlns=" http://www.omg.org/spec/BPMN/20100524/MODELhttp://www.omg.org/spec/BPMN/20100524/MODEL"
xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instancehttp://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=" http://www.omg.org/spec/BPMN/20100524/MODELhttp://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd"
xmlns:g=" http://www.jboss.org/drools/flow/gpdhttp://www.jboss.org/drools/flow/gpd"
xmlns:bpmndi=" http://www.omg.org/spec/BPMN/20100524/DIhttp://www.omg.org/spec/BPMN/20100524/DI"
xmlns:dc=" http://www.omg.org/spec/DD/20100524/DChttp://www.omg.org/spec/DD/20100524/DC"
xmlns:di=" http://www.omg.org/spec/DD/20100524/DIhttp://www.omg.org/spec/DD/20100524/DI"
xmlns:tns=" http://www.jboss.org/droolshttp://www.jboss.org/drools">
<escalation id="error" escalationCode="error" />
<process processType="Private" isExecutable="true" id="checkExce" name="CheckException.b" >
<!-- nodes -->
<startEvent id="_1" name="Start" />
<scriptTask id="_2" name="Script" >
<script>System.out.println("here in script node");</script>
</scriptTask>
<scriptTask id="_4" name="Script" >
<script>System.out.println("Error Event");</script>
</scriptTask>
<endEvent id="_6" name="Error" >
<escalationEventDefinition escalationRef="error" />
</endEvent>
<intermediateCatchEvent id="_7" name="Error" >
<signalEventDefinition signalRef="error"/>
</intermediateCatchEvent>
<endEvent id="_8" name="End" >
<terminateEventDefinition/>
</endEvent>
<!-- connections -->
<sequenceFlow id="_1-_2" sourceRef="_1" targetRef="_2" />
<sequenceFlow id="_7-_4" sourceRef="_7" targetRef="_4" />
<sequenceFlow id="_2-_6" sourceRef="_2" targetRef="_6" />
<sequenceFlow id="_4-_8" sourceRef="_4" targetRef="_8" />
</process>
<bpmndi:BPMNDiagram>
<bpmndi:BPMNPlane bpmnElement="checkExce" >
<bpmndi:BPMNShape bpmnElement="_1" >
<dc:Bounds x="100" y="100" width="48" height="48" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="_2" >
<dc:Bounds x="194" y="100" width="80" height="48" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="_4" >
<dc:Bounds x="138" y="284" width="80" height="48" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="_6" >
<dc:Bounds x="434" y="212" width="48" height="48" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="_7" >
<dc:Bounds x="73" y="283" width="48" height="48" />
</bpmndi:BPMNShape>
<bpmndi:BPMNShape bpmnElement="_8" >
<dc:Bounds x="326" y="292" width="48" height="48" />
</bpmndi:BPMNShape>
<bpmndi:BPMNEdge bpmnElement="_1-_2" >
<di:waypoint x="124" y="124" />
<di:waypoint x="234" y="124" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="_7-_4" >
<di:waypoint x="97" y="307" />
<di:waypoint x="178" y="308" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="_2-_6" >
<di:waypoint x="234" y="124" />
<di:waypoint x="458" y="236" />
</bpmndi:BPMNEdge>
<bpmndi:BPMNEdge bpmnElement="_4-_8" >
<di:waypoint x="178" y="308" />
<di:waypoint x="350" y="316" />
</bpmndi:BPMNEdge>
</bpmndi:BPMNPlane>
</bpmndi:BPMNDiagram>
</definitions>
--------------------------------------------------------------
Reply to this message by going to Community
[http://community.jboss.org/message/632741#632741]
Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1&cont...]