Messaging strategies to connect different systems
Posted
by n002213f
on Stack Overflow
See other posts from Stack Overflow
or by n002213f
Published on 2010-04-19T13:37:11Z
Indexed on
2010/04/19
20:13 UTC
Read the original article
Hit count: 249
I have a system to handle Applications online and a different system to send SMS/Email notifications to applicants on completion using web services. I can't guarantee the availability of the SMS/Email gateway.
Option 1
After an application is complete, place a message on a JMS queue. A Message Driven bean receives the message and make a call for the web service, if it fails leave the message on the queue. I suspect (please correct if incorrect) that if the gate way is offline the continuosly try to send the message which might use up valuable resources.
Can the above option be refined are are there any other messaging strategies that can be used?
© Stack Overflow or respective owner