[JBoss JIRA] (JBESB-3945) Bpm5Processor does not support processes containing sub-processes
by RH Bugzilla Integration (JIRA)
[ https://issues.jboss.org/browse/JBESB-3945?page=com.atlassian.jira.plugin... ]
RH Bugzilla Integration commented on JBESB-3945:
------------------------------------------------
tcunning(a)redhat.com changed the Status of [bug 980530|https://bugzilla.redhat.com/show_bug.cgi?id=980530] from NEW to MODIFIED
> Bpm5Processor does not support processes containing sub-processes
> -----------------------------------------------------------------
>
> Key: JBESB-3945
> URL: https://issues.jboss.org/browse/JBESB-3945
> Project: JBoss ESB
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Process flow
> Affects Versions: 4.11
> Reporter: Tom Cunningham
> Assignee: Tom Cunningham
> Fix For: 4.11 CP3
>
>
> Bpm5Processor (or rather AbstractBpm5Action) adds the configured process definitions to the knowledgebase:
> kbuilder.add(ResourceFactory.newClassPathResource(processDefName), ResourceType.BPMN2);
> But there is no support for processes which are calling sub-processes. The class should be extended to read a list of process definition names from the configuration, and add them all to the kbase, so that process->sub-process invocation is possible from Bpm5Processor.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBESB-3945) Bpm5Processor does not support processes containing sub-processes
by Tom Cunningham (JIRA)
[ https://issues.jboss.org/browse/JBESB-3945?page=com.atlassian.jira.plugin... ]
Tom Cunningham closed JBESB-3945.
---------------------------------
> Bpm5Processor does not support processes containing sub-processes
> -----------------------------------------------------------------
>
> Key: JBESB-3945
> URL: https://issues.jboss.org/browse/JBESB-3945
> Project: JBoss ESB
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Process flow
> Affects Versions: 4.11
> Reporter: Tom Cunningham
> Assignee: Tom Cunningham
> Fix For: 4.11 CP3
>
>
> Bpm5Processor (or rather AbstractBpm5Action) adds the configured process definitions to the knowledgebase:
> kbuilder.add(ResourceFactory.newClassPathResource(processDefName), ResourceType.BPMN2);
> But there is no support for processes which are calling sub-processes. The class should be extended to read a list of process definition names from the configuration, and add them all to the kbase, so that process->sub-process invocation is possible from Bpm5Processor.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBESB-3945) Bpm5Processor does not support processes containing sub-processes
by Tom Cunningham (JIRA)
[ https://issues.jboss.org/browse/JBESB-3945?page=com.atlassian.jira.plugin... ]
Tom Cunningham resolved JBESB-3945.
-----------------------------------
Resolution: Done
> Bpm5Processor does not support processes containing sub-processes
> -----------------------------------------------------------------
>
> Key: JBESB-3945
> URL: https://issues.jboss.org/browse/JBESB-3945
> Project: JBoss ESB
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Process flow
> Affects Versions: 4.11
> Reporter: Tom Cunningham
> Assignee: Tom Cunningham
> Fix For: 4.11 CP3
>
>
> Bpm5Processor (or rather AbstractBpm5Action) adds the configured process definitions to the knowledgebase:
> kbuilder.add(ResourceFactory.newClassPathResource(processDefName), ResourceType.BPMN2);
> But there is no support for processes which are calling sub-processes. The class should be extended to read a list of process definition names from the configuration, and add them all to the kbase, so that process->sub-process invocation is possible from Bpm5Processor.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBESB-3945) Bpm5Processor does not support processes containing sub-processes
by Tom Cunningham (JIRA)
Tom Cunningham created JBESB-3945:
-------------------------------------
Summary: Bpm5Processor does not support processes containing sub-processes
Key: JBESB-3945
URL: https://issues.jboss.org/browse/JBESB-3945
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Process flow
Affects Versions: 4.11
Reporter: Tom Cunningham
Assignee: Tom Cunningham
Fix For: 4.11 CP3
Bpm5Processor (or rather AbstractBpm5Action) adds the configured process definitions to the knowledgebase:
kbuilder.add(ResourceFactory.newClassPathResource(processDefName), ResourceType.BPMN2);
But there is no support for processes which are calling sub-processes. The class should be extended to read a list of process definition names from the configuration, and add them all to the kbase, so that process->sub-process invocation is possible from Bpm5Processor.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBESB-3944) DBMessageStoreImpl.insert(...) method always sets 'delivered' to "TRUE"
by Tadayoshi Sato (JIRA)
[ https://issues.jboss.org/browse/JBESB-3944?page=com.atlassian.jira.plugin... ]
Tadayoshi Sato updated JBESB-3944:
----------------------------------
Summary: DBMessageStoreImpl.insert(...) method always sets 'delivered' to "TRUE" (was: DBMessageStoreImpl.insert(...) method always sets delivered to "TRUE")
> DBMessageStoreImpl.insert(...) method always sets 'delivered' to "TRUE"
> -----------------------------------------------------------------------
>
> Key: JBESB-3944
> URL: https://issues.jboss.org/browse/JBESB-3944
> Project: JBoss ESB
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: Message Store, Rosetta
> Affects Versions: 4.12
> Reporter: Tadayoshi Sato
>
> {{DBMessageStoreImpl.insert(...)}} method doesn't use the {{delivered}} argument and hardcodes the value {{"TRUE"}}.
> {code:java}
> private void insert(URI uid, Message message, String classification, String delivered, Connection conn)
> throws SQLException, MessageStoreException
> {
> String sql = "insert into "+tableName+"(uuid, type, message, delivered, classification) values(?,?,?,?,?)";
> PreparedStatement ps = null;
>
> try
> {
> ps = conn.prepareStatement(sql);
> ...
> ps.setString(4, "TRUE");
> ...
> {code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (JBESB-3944) DBMessageStoreImpl.insert(...) method always sets delivered to "TRUE"
by Tadayoshi Sato (JIRA)
Tadayoshi Sato created JBESB-3944:
-------------------------------------
Summary: DBMessageStoreImpl.insert(...) method always sets delivered to "TRUE"
Key: JBESB-3944
URL: https://issues.jboss.org/browse/JBESB-3944
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Message Store, Rosetta
Affects Versions: 4.12
Reporter: Tadayoshi Sato
{{DBMessageStoreImpl.insert(...)}} method doesn't use the {{delivered}} argument and hardcodes the value {{"TRUE"}}.
{code:java}
private void insert(URI uid, Message message, String classification, String delivered, Connection conn)
throws SQLException, MessageStoreException
{
String sql = "insert into "+tableName+"(uuid, type, message, delivered, classification) values(?,?,?,?,?)";
PreparedStatement ps = null;
try
{
ps = conn.prepareStatement(sql);
...
ps.setString(4, "TRUE");
...
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months