@activemq.apache.org
Sent: Wed, January 20, 2010 8:53:39 AM
Subject: Re: Configuring a topic in Spring with default ActiveMQ
I think I need to add:
class="org.apache.activemq.command.ActiveMQTopic">
request-channel="inChannel"/>
Now I can receive messages but only the first one.
I need to use message-driven-channel-adapter.
From: go canal
To: users@activemq.apache.org
Sent: Wed, January 20, 2010 8:53:39 AM
Subject: Re: Configuring a topic in Spring with default ActiveMQ
I think I need to add:
Now I can receive messages but only
I think I need to add:
Now I can receive messages but only the first one. I can not get subsequent
messages.
This is my service activator:
@ServiceActivator
public void upperCase(String input) {
System.out.println ("message received : " + input);
}
Anything I missed out ?rgds,
canal