Add variable copy to call activity

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-20-2011 12:48 PM
See http://jira.codehaus.org/browse/ACT-560.
I currently asked Tom:
–
Is it possible to add own extensions in the activiti-bpmn-extensions-5.0.xsd? Or when is that allowed?
Or do we have to work with the existing ones?
–
Depending on that answer we can define, how the XML configuration should look like.
I currently asked Tom:
–
Is it possible to add own extensions in the activiti-bpmn-extensions-5.0.xsd? Or when is that allowed?
Or do we have to work with the existing ones?
–
Depending on that answer we can define, how the XML configuration should look like.
Labels:
- Labels:
-
Archive
12 REPLIES 12

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2011 05:27 AM
Okay, for the moment I added a switch to disable schema validation in the @Deployment annotation, so the tests works (the WS stuff disabled that as well!).
And another thing that puzzled me:
Why is the exception just catched and logged? Shouldn't be this exception propagated and cause a rollback?
I will commit a proposal in a couple of minutes, if the test suite passes locally.
Thanks and cheers
Bernd
And another thing that puzzled me:
AtomicOperationProcessEnd
@Override
protected void eventNotificationsCompleted(InterpretableExecution execution) {
execution.destroy();
execution.remove();
// and trigger execution afterwards
if (superExecution!=null) {
superExecution.setSubProcessInstance(null);
ActivityImpl activity = (ActivityImpl) superExecution.getActivity();
SubProcessActivityBehavior subProcessActivityBehavior = (SubProcessActivityBehavior) activity.getActivityBehavior();
try {
subProcessActivityBehavior.completed(superExecution);
} catch (Exception e) {
log.log(Level.SEVERE, "Error while completing sub process of execution " + execution, e);
}
}
}
Why is the exception just catched and logged? Shouldn't be this exception propagated and cause a rollback?
I will commit a proposal in a couple of minutes, if the test suite passes locally.
Thanks and cheers
Bernd
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2013 12:02 PM
In our project there is a need of passing some default values from the BPMN file for which I was hoping to add elements to the part extensionelements so is there a way to edit the existing xsd file to add custom elements and attributes?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-19-2013 04:14 AM
Custom elements can be added to the extension elements in the xml. There is no need to add it to the xsd if it's in the extension element.
You would need to add parser handling for those specific elements, to handle them at parse time.
You would need to add parser handling for those specific elements, to handle them at parse time.
