ESB Editor generates wrong value for command attribute and wrong property name for process
definition name.
-----------------------------------------------------------------------------------------------------------
Key: JBDS-1258
URL:
https://jira.jboss.org/browse/JBDS-1258
Project: Developer Studio (JBoss Developer Studio)
Issue Type: Bug
Components: SOA Platform
Affects Versions: 3.0.0.GA
Environment: Fedora 12, Sun java version "1.6.0_18" 64-bit
Reporter: Thomas Qvarnström
Priority: Minor
When using ESB Editor to add a BPM Processor the drop-down for command contains the option
"StartProcessCommand" which should be "StartProcessInstanceCommand".
The following is the xml generated by the BPM Processor:
<action class="org.jboss.soa.esb.services.jbpm.actions.BpmProcessor"
name="start-bpm-process">
<property name="command" value="StartProcessCommand"/>
<property name="processdefinition" value="testproc"/>
</action>
To get this to work with JBoss SOA-P 5 it should read:
<action class="org.jboss.soa.esb.services.jbpm.actions.BpmProcessor"
name="start-bpm-process">
<property name="command"
value="StartProcessInstanceCommand"/> <!-- Property value changed -->
<property name="process-definition-name" value="testproc"/>
<!-- Property name changed -->
</action>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira