[
http://jira.jboss.com/jira/browse/JBESB-904?page=comments#action_12373991 ]
Len DiMaggio commented on JBESB-904:
------------------------------------
The offending code is here - I'm not sure what Kurt had in mind with by displaying
this error message...
/**
* Public constructor.
*
* @param config
* Configuration.
*/
public SystemPrintln(ConfigTree config)
{
printlnMessage = config.getAttribute(PRE_MESSAGE,
"** 'message' attribute not set **");
printFullMessage = (config.getAttribute(FULL_MESSAGE,
"false").equalsIgnoreCase("true") ? true : false);
useOutputStream = (config.getAttribute(PRINT_STREAM,
"true").equals("true") ? true : false);
}
public Message process(Message message) throws ActionProcessingException
{
Object messageObject = ActionUtils.getTaskObject(message);
PrintStream stream = (useOutputStream ? System.out : System.err);
stream.println(printlnMessage + ": " + message.toString() );
A number of QSes complain about message attribute not being set
---------------------------------------------------------------
Key: JBESB-904
URL:
http://jira.jboss.com/jira/browse/JBESB-904
Project: JBoss ESB
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Examples
Affects Versions: 4.2 Milestone Release 3
Reporter: Kevin Conner
Assigned To: Kevin Conner
Priority: Minor
Fix For: 4.2.1
This is coming from SystemPrintln, error message is "'message' attribute not
set"
--
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