ActiveMQ in Action Book Required.

2010-03-28 Thread Mparida
Hi, If any one has the ActiveMQ In Action Book (Manning Pub). Then please share @ manojpari...@gmail.com. I need this book urgently. Thx, Manoj -- View this message in context: http://old.nabble.com/ActiveMQ-in-Action-Book-Required.-tp28059765p28059765.html Sent from the ActiveMQ - User mailin

JMS and DATABASE operations in a single transaction

2010-01-12 Thread Mparida
Hello, I want to execute a message and a DB operation in a single transaction. I know it is only possible using JTA. I am not using spring. I am using Tom Cat server as an App Server. Can any one give an idea of how to achieve this? Had any one implemented similar kind of thing? Thank You, Mano

Using SSL in Active MQ

2010-01-10 Thread Mparida
Hello, I want to use SSL as a secured way of transferring data using Active MQ. I saw many postings in the forum on this but actually want to start. Could anyone give an idea of how to go over this? Any useful link or site? Thank You, Manoj -- View this message in context: http://old.nabble.c

JMS Certification

2009-12-21 Thread Mparida
Hi,:jumping: Does anyone know about any good JMS Cerification which would help me building my competency. Manoj:jumping: -- View this message in context: http://old.nabble.com/JMS-Certification-tp26871176p26871176.html Sent from the ActiveMQ - User mailing list archive at Nabble.com.

Re: Jms and Database operation in a single Transaction.

2009-12-21 Thread Mparida
Correcting the subject header Mparida wrote: > > Hi, > > I want to do an operation which involves a data source (Say Insert or > Update) and simultaneously want to do a message related operation also. > > I want these two operation to be atomic i.e. want to operate in a

Jms and Database operation in a singlr Transaction.

2009-12-21 Thread Mparida
Hi, I want to do an operation which involves a data source (Say Insert or Update) and simultaneously want to do a message related operation also. I want these two operation to be atomic i.e. want to operate in a single Transaction. I know JTA (User Transaction/Xa) but do not know how to use it

Re: 24 hours listener

2009-12-17 Thread Mparida
Sorry, There is no need to put a infinite loop here. The onMessage() it self listens to the queue 24/7. Sorry for confusion. Mparida wrote: > > Hi, > > I want to configure a 24 hrs listener which shall listen to a queue > through out the day and listen if there are a ny messa

Re: 24 hours listener

2009-12-17 Thread Mparida
lic void onException ( javax.jms.JMSException jmse) { } } [/code] rajdavies wrote: > > Post the code you used please > On 17 Dec 2009, at 15:12, Mparida wrote: > >> >> Hi, >> >> I want to configure a 24 hrs listener which shall listen to a q

24 hours listener

2009-12-17 Thread Mparida
Hi, I want to configure a 24 hrs listener which shall listen to a queue through out the day and listen if there are a ny messages in queue or not. I tried it through an infinite loop but as you know it creates high CPU. I do not want to use schedulers for this. If any one has done similar kin