Marcus Sainz

Greenhorn
+ Follow
since Dec 03, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Marcus Sainz

It's done the update Bear Bibeault. Hope it takes effect.

Thanks
16 years ago
Hi there:

I'm trying to send messages from a Servlet to a queue asynchronously. I've been reading a lot and I still don't have a clear idea about if this is possible or not.

I've created a Connection Factory with One-way message sending enabled for both topics and queues, and I use this code on the sender.


code:
--------------------------------------------------------------------------------

Context ctx = new InitialContext();
qconFactory = (QueueConnectionFactory) ctx.lookup(JMS_FACTORY);
qcon = qconFactory.createQueueConnection();
queue = (Queue) ctx.lookup(QUEUE);
qsession = qcon.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
qsender = qsession.createSender(queue);
qcon.start();qsender.send(msg,DeliveryMode.NON_PERSISTENT,4,1000);
qsender.close();qsession.close();qcon.close();

--------------------------------------------------------------------------------



This code works nice but I need to know how to make this sendings asynchronously if it is possible, I don't want to wait to the queues acknowledge.

Thanks!
[ December 03, 2008: Message edited by: bisala ]
16 years ago
Hi there:

I'm trying to send messages to a queue asynchronously. I've been reading a lot and I still don't have a clear idea about if this is possible or not.

I've created a Connection Factory with One-way message sending enabled for both topics and queues, and I use this code on the sender.



This code works nice but I need to know how to make this sendings asynchronously if it is possible.

Thanks!
[ December 03, 2008: Message edited by: bisala ]
16 years ago