Re: Configuring a topic in Spring with default ActiveMQ

2010-01-19 Thread Rob Davies
@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.

Re: Configuring a topic in Spring with default ActiveMQ

2010-01-19 Thread go canal
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

Re: Configuring a topic in Spring with default ActiveMQ

2010-01-19 Thread go canal
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