Re: How to create a message queue?
Posted By:
Haresh_Lala
Posted On:
Saturday, December 3, 2005 04:38 PM
You can use File Folder as a queue to recieve incoming messages in XML or text format,Write a Java/Perl Listener polling against this folder,waiting for incoming request,on message arrival from your external application call your processes from Perl or Java listener and on successful processing delete message from file folder and pick the next message in loop.
Listener would be like a thread configured with sleep parameters.
Re: How to create a message queue?
Posted By:
Christopher_Koenigsberg
Posted On:
Friday, September 23, 2005 10:36 PM
If you think that JMS or AQ etc are too complicated, then what's wrong with just using your database table? as long as you handle locking/contention.