Originally posted by HS Thomas:
What is the best thing to come out of JMS without refeence to EJB or JDO's or POJOs.
I suspect Message driven beans ?
Anything else ?
If your are talking about the messages the are sent/received to/from message queue using JMS API, then the basic requirement is all those messages should implement javax.jms.Message interface.
or if you are talking about the message listeners, that recieve the message. Then the client (listener) should implement MessageListener ... it could be a EJB (i mean MDB) or just a normal
java class.
Did I answer your question ?
