I am using Apache Camel + Active MQ + Spring + Tomcat.
I am using Camel to route messages from one message queue to another.
I was earlier using TCP transport for messaging and it worked correctly but
I later wanted to use HTTP transport. So i made required changes and
included all required Jars but I started getting following error
"No transportListener available to process inbound command: ConnectionInfo
{commandId = 1, responseRequired = true, connectionId =
ID:PS2396-2647-1250156519828-2:1, clientId =
ID:PS2396-2647-1250156519828-5:0, userName = null, password = null,
brokerPath = null, brokerMasterConnector = false, manageable = true,
clientMaster = true}"
Following is my configuration..
activemq2.xml - ActiveMQ configuration file.
....
<transportConnectors>
<transportConnector uri="tcp://localhost:61616"/>
<transportConnector uri="http://localhost:11077"/>
</transportConnectors>
.....
ActiveMQ starts this connector properly. I can see this in Tomcat startup
log.
INFO: Connector tcp://localhost:61616 Started
2009-08-13 15:12:00.860::INFO: Logging to STDERR via
org.mortbay.log.StdErrLog
2009-08-13 15:12:00.923::INFO: jetty-6.1.9
2009-08-13 15:12:00.065::INFO: Started socketconnec...@localhost:11077
Aug 13, 2009 3:12:00 PM org.apache.activemq.broker.TransportConnector start
INFO: Connector http://localhost:11077 Started
applicationContext.xml -
.....
<bean id="jmsSrc"
class="org.apache.activemq.camel.component.ActiveMQComponent">
<property name="brokerURL" value="http://localhost:11077"/>
</bean>
<bean id="jmsDest"
class="org.apache.activemq.camel.component.ActiveMQComponent">
<property name="brokerURL" value="tcp://ps6524:61616"/>
<property name="clientId" value="ideasClient" />
<property name="durableSubscriptionName" value="ideasClientSub"/>
<property name="subscriptionDurable" value="true"/>
</bean>
....
I am trying to move messages from jmsSrc to jmsDest. I am using HTTP
transport for jmsSrc.
Am I missing something? Any help would be appreciated.
--
View this message in context:
http://www.nabble.com/No-transportListener-available-to-process-inbound-command-tp24954567p24954567.html
Sent from the Camel Development mailing list archive at Nabble.com.