Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-06 Thread Andreas Gies
ive 5.5 but after upgrade into active 5.8 it is not working Message getting hang in MESSAGING_TEST_CONSUMER_TYPE_SPECIFIC_QNAME not calling memosprocess class. Please kindly help me. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-routing-issue-after-upgrade-in

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-06 Thread prabumc...@gmail.com
;>String eventType= (String) > >>>>>>>>> headers.get(EVENT_TYPE); > >>>>>>>>>> String msgId= (String) > >>>>>>>>> headers.get(MESSAGE_ID); > >>>

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-06 Thread Andreas Gies
this message in context: http://camel.465427.n5.nabble.com/Camel-routing-issue-after-upgrade-into-active-mq-5-8-tp5738700.html Sent from the Camel - Users mailing list archive at Nabble.com. -- *Christian Posta* http://www.christianposta.com/blog twitter: @christianposta http://www.christ

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-05 Thread prabumc...@gmail.com
MESSAGE_ID); >>>> > > > > > System.out.println("Memos-msgid:"+msgId); >>>> > > > > > int msg_Expiry_Time = >>>> Integer.parseInt((String) >>>> > > > > > headers.get(E

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-05 Thread prabumc...@gmail.com
SExpiration,MSG_EXPIRY); >>> > > > > > >>> > > > > > String restfulServiceURL =(String) >>> > > > > > headers.get(MEMOS_RESTFULSERVICE_URL); >>> > > > > > restfulServiceURL=restful

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-05 Thread prabumc...@gmail.com
t; String serversList= (String) >> > > > > > headers.get(MEMOS_TARGET_SERVERS); >> > > > > > >> > > > > > String servers [] = serversList.split(":"); >> > > > > >

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-04 Thread prabumc...@gmail.com
= servers[0]; > > > > > > handler2 = servers[1]; > > > > > > } > > > > > > headers.put(MEMOS_TARGET_SERVER,handler1); > > > > > > > > > > > prodtemplate.sendBodyAndHea

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-04 Thread Christian Posta
> new MemosProcess().callService(msgId, > > > > > hostname,restfulServiceURL); > > > > > > > > > prodtemplate.sendBodyAndHeaders(CONSUMER_TEST_QNAME,"Consumer > > > > > test",headers); > > > > >

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-04 Thread prabumc...@gmail.com
late.sendBodyAndHeaders(CONSUMER_TEST_QNAME,"Consumer > > > > test",headers); > > > > }else if(eventType.equalsIgnoreCase(PRODUCER_EVENT_TYPE)){ > > > > new MemosProcess().callService(msgId, > > > > hostname,restfulService

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-04 Thread Christian Posta
> above code worked fine in active 5.5 but after upgrade into active 5.8 > > it > > > is > > > not working > > > > > > Message getting hang in MESSAGING_TEST_CONSUMER_TYPE_SPECIFIC_QNAME not > > > calling memosprocess class. > > > &g

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-04 Thread prabumc...@gmail.com
getting hang in MESSAGING_TEST_CONSUMER_TYPE_SPECIFIC_QNAME not > > calling memosprocess class. > > > > Please kindly help me. > > > > > > > > -- > > View this message in context: > > > http://camel.465427.n5

Re: Camel routing issue after upgrade into active-mq 5.8

2013-09-04 Thread Christian Posta
What does it do? Does the broker dispatch messages to the client (you can see with the "in-flight" metrics on the broker)? Can you turn up the logging and see what camel is doing? what sort of ack mode are you using on the connection? On Wed, Sep 4, 2013 at 11:50 AM, prabumc...@gmail.com wrote:

Camel routing issue after upgrade into active-mq 5.8

2013-09-04 Thread prabumc...@gmail.com
My code worked fine in activemq 5.5 only issue after upgrading activemq 5.8 Camel i having code like from(MESSAGING_TEST_CONSUMER_TYPE_SPECIFIC_QNAME).process(new MemosProcess(getContext().createProducerTemplate())) .end(); class MemosProcess implements Processor,QnamesInterface { pri