[
http://jira.jboss.com/jira/browse/JBESB-1302?page=comments#action_12386945 ]
Jaroslaw Kijanowski commented on JBESB-1302:
--------------------------------------------
the whole server's console log:
21:28:14,262 INFO [STDOUT]
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
21:28:14,263 INFO [STDOUT] Body: Hello World
21:28:14,263 INFO [STDOUT]
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
21:28:14,282 WARN [ActionProcessingPipeline] No reply to address defined for reply
message! To: JMSEpr [ PortReference < <wsa:Address
jms://localhost/queue/quickstart_helloworld_file_notifier_console_gw/>,
<wsa:ReferenceProperties jbossesb:java.naming.factory.initial :
org.jnp.interfaces.NamingContextFactory/>, <wsa:ReferenceProperties
jbossesb:java.naming.provider.url : jnp://127.0.0.1:1099/>, <wsa:ReferenceProperties
jbossesb:java.naming.factory.url.pkgs : org.jboss.naming:org.jnp.interfaces/>,
<wsa:ReferenceProperties jbossesb:destination-type : queue/>,
<wsa:ReferenceProperties jbossesb:specification-version : 1.1/>,
<wsa:ReferenceProperties jbossesb:connection-factory : ConnectionFactory/>,
<wsa:ReferenceProperties jbossesb:persistent : true/>, <wsa:ReferenceProperties
jbossesb:acknowledge-mode : 1/> > ] MessageID: ID:JBM-303109 RelatesTo:
jms:correlationID#ID:JBM-303616
21:28:14,588 WARN [ActionProcessingPipeline] No reply to address defined for reply
message! To: JMSEpr [ PortReference < <wsa:Address
jms://localhost/queue/quickstart_helloworld_file_notifier_file_gw/>,
<wsa:ReferenceProperties jbossesb:java.naming.factory.initial :
org.jnp.interfaces.NamingContextFactory/>, <wsa:ReferenceProperties
jbossesb:java.naming.provider.url : jnp://127.0.0.1:1099/>, <wsa:ReferenceProperties
jbossesb:java.naming.factory.url.pkgs : org.jboss.naming:org.jnp.interfaces/>,
<wsa:ReferenceProperties jbossesb:destination-type : queue/>,
<wsa:ReferenceProperties jbossesb:specification-version : 1.1/>,
<wsa:ReferenceProperties jbossesb:connection-factory : ConnectionFactory/>,
<wsa:ReferenceProperties jbossesb:persistent : true/>, <wsa:ReferenceProperties
jbossesb:acknowledge-mode : 1/> > ] MessageID: ID:JBM-303111 RelatesTo:
jms:correlationID#ID:JBM-303616
21:28:14,797 INFO [STDOUT] ConsoleNotifier 2007/11/10 09:28:14.796<Hello World>
QS helloworld_file_notifier issues
----------------------------------
Key: JBESB-1302
URL:
http://jira.jboss.com/jira/browse/JBESB-1302
Project: JBoss ESB
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Examples
Affects Versions: 4.2.1
Reporter: Jaroslaw Kijanowski
Assigned To: Mark Little
Fix For: 4.2.1 CP1
1. missing "mep" attributes in jbos-esb-unfiltered.xml causes WARN messages
2. sendesb target in build.xml should run
org.jboss.soa.esb.samples.quickstart.helloworldfilenotifier.test.SendEsbMessage but runs
org.jboss.soa.esb.samples.quickstart.helloworld.test.SendEsbMessage
3. org.jboss.soa.esb.samples.quickstart.helloworldfilenotifier.MyJMSListenerAction should
be aware that it can get two types of message, a String and a byte array:
public Message displayMessage(Message message) throws Exception{
String content = null;
if (message.getBody().get() instanceof String) {
content = (String)message.getBody().get();
} else if (message.getBody().get() instanceof byte[]) {
content = new String((byte[])message.getBody().get());
}
System.out.println("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&");
System.out.println("Body: " + content);
System.out.println("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&");
return message;
}
--
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