J M S

I'm a newbie (not to Java) to JMS. What is JMS and normally when to use in a J2EE application? Please provide me a simple example with code.
[148 byte] By [bronze-starDukes] at [2007-11-26 12:13:52]
# 1

After reading some of your other posts, you seem like a newbie to Java, JMS and Google, but ho hum...

JMS is a mechanism for getting two or more java applications to pass messages to each other. The messages can be strings, bytes or even objects provided they are serializable.

Among JMS's strenghts are that it can be transactional and persistent, meaning that your can guarantee once and once only delivery of a message.

Disadvantages are that JMS by itself does not support languages other than Java, although some JMS vendors have written client libraries for this.

I suggest you take a look around java.sun.com for more information and code samples.

bronzestar at 2007-7-7 14:15:39 > top of Java-index,Archived Forums,Socket Programming...
# 2
Thanks for the reply. I'm new to Java too, but successfully finished a J2EE project.
bronzestar at 2007-7-7 14:15:39 > top of Java-index,Archived Forums,Socket Programming...