Introducing the Java Message Service
Short Description
This tutorial provides an overview of the Java Message Service (JMS) and offers … Before taking this tutorial you should be familiar with Java programming …
Website: www.digilife.be | Filesize: 218kb
Content
Introducing the Java Message Service
Presented by developerWorks, your source for great tutorials
ibm.com/developerWorks
Table of Contents
If you’re viewing this document online, you can click any of the topics below to link directly to that section.
1. Tutorial tips 2
2. Introduction 3
3. JMS overview and architecture 7
4. Point-to-point interfaces 14
5. Point-to-point programming 17
6. Pub/sub interfaces 22
7. Pub/sub programming 24
8. Summary 25
9. Appendix 27
Introducing the Java Message Service Page 1Section 1. Tutorial tips
Should I take this tutorial?
This tutorial provides an overview of the Java Message Service (JMS) and offers the basics
for developing programs that use it. JMS was developed by Sun Microsystems to provide a
way for Java programs to access an enterprise messaging system, also known as message
oriented middleware (MOM). MOM provides a mechanism for integrating applications in a
loosely coupled, flexible manner by providing asynchronous delivery of data between
applications in an indirect way through an intermediary.
Before taking this tutorial you should be familiar with Java programming and object-oriented
programming concepts.
To write the programs described in this tutorial, you need an editing environment. This can
be as basic as an operating system editor. In a development context, many people use an
integrated development environment (IDE) because it possesses debuggers and other
features designed specifically for writing and testing code.
To compile the programs, you’ll need the Java compiler (javac.exe). You will also need the
JMS classes in the package javax.jms and the Java Naming and Directory Interface
(JNDI) classes in the package javax.naming. You can download these from Sun: JMS and
JNDI…
Get the file Download here
Related Books:Related Searches: java message service, integrated development environment, oriented programming concepts, object oriented programming concepts, object oriented programming
Comments
Leave a Reply