Hi Byorn,
Thank you for the response.
We write our own logic using Timer to schedule the JOBS. Once the Jobs are activated it is
handed over to JMS framework to execute these jobs.
Here is a code snippet.
qConnection = qConnectionFactory.createQueueConnection();
q=Session = qConnection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
qSender = qSession.createSender(q);
MapMessage msg = qSession.createMapMessage();
//set some data of the JOBS to message
qSender.send(msg);
I hope I have answered your question, if not so pls ask.
Regards,
Shashi
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3993376#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...