[JBoss JIRA] Created: (JBESB-1382) SQL Listener XSD definition assigning suspicious defaults
by Tom Fennelly (JIRA)
SQL Listener XSD definition assigning suspicious defaults
---------------------------------------------------------
Key: JBESB-1382
URL: http://jira.jboss.com/jira/browse/JBESB-1382
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Configuration
Affects Versions: 4.2.1
Reporter: Tom Fennelly
Fix For: 4.2.1 CP1
It's assigning defaults to some of the column names. I'd have thought it shouldn't be defaulting these - they either exist and are configured and used... or they're not and the code should check for that and/or give an error because it allows code to continue on blindly thinking everything is cool.
<xsd:attribute default="message_id" name="message-id-column"
<xsd:attribute default="message" name="message-column"
<xsd:attribute default="status" name="status-column"
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 4 months
[JBoss JIRA] Created: (JBESB-1236) bpm_orchestration4 - LazyInitializationException
by Jaroslaw Kijanowski (JIRA)
bpm_orchestration4 - LazyInitializationException
------------------------------------------------
Key: JBESB-1236
URL: http://jira.jboss.com/jira/browse/JBESB-1236
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Reporter: Jaroslaw Kijanowski
Assigned To: Mark Little
I clicked on "Save & close" in the jbpm console and after the Discount Services finished I got:
12:45:51,012 INFO [STDOUT] ************ END ORDER DISCOUNT FIXER ************
12:45:51,148 WARN [ProxyWarnLog] Narrowing proxy to class org.jbpm.graph.node.TaskNode - this operation breaks ==
12:45:51,332 ERROR [LazyInitializationException] could not initialize proxy - no Session
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 4 months
[JBoss JIRA] Created: (JBESB-1272) CommandInterpreter.doTheJob does not make sense in error condition
by Mark Little (JIRA)
CommandInterpreter.doTheJob does not make sense in error condition
------------------------------------------------------------------
Key: JBESB-1272
URL: http://jira.jboss.com/jira/browse/JBESB-1272
Project: JBoss ESB
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: Process flow
Affects Versions: 4.2.1 IR2
Reporter: Mark Little
Fix For: 4.3
Message response = Helper.commandMessageTemplate();
Body body = response.getBody();
try
{
Object obj = getJbpmCommandService().execute(command);
body.add(Constants.RETURN_CODE, Constants.RETCODE_OK);
if (null!=obj)
body.add(Constants.JBPM_RETURN_OBJECT, obj);
}
catch (JbpmException e)
{
body.add(Constants.RETURN_CODE, Constants.RETCODE_EXCEPTION);
body.add(Constants.EXCEPTION, e);
throw e;
}
return response;
Why does the code modify the body when the message isn't going to be returned?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
18 years, 4 months