Is there an alternative to JMS?
Hello!Suppose you have this scenario of a webshop running on server A and a webbased system to monitor your warehouse running on server B.
The webshop creates orders to be assembled in the warehouse.
Since the webshop does not need any employees it is running 24/7.
The warehouse on the other hand has employees and during each night they shut down server B.
A solution to create a nice communications between server A and server B could be using JMS. Since it supports guaranteed delivery with concept such "Store-and-Forward Messaging" and "Internal acknowledgment rules".
The question now is if you could suggest any other solution for this.
The problem is:
how to not lose any messages
how to not block the webshops interaction
With block the webshop I mean that if the webshop creates an order and waits for an respond it may be blocked and the customer may not be able to complete the order if server B is down.
Any comments are welcome!
Best regards
Fredrik
