How reliable are JMS implementations? Can JMS queues hold up to 1 million messages at a time? I have a design problem that I need help with. I have a
servlet receiving https requests which I then send out to a JMS queue for consumption by and MDB. The request of course has to be validated. Question is, where do I put the validation of the request parameters? Upon receiving the http receive and before sending to the JMS queue or upon receiving of the message by the MDB? If i validate the request before sending to the JMS queue, can I be sure that the MDB will get exactly the same message the servlet sent or will there be instances that the message might get corrupted thus will be invalid.
Thanks very much in advance
