Academic Tutorials



English | French | Portugese | German | Italian
Google

Home Source Codes E-Books Downloads Contact Us About Us

JMS Tutorial
JMS Introduction
Overview to JMS
Listen to HeartBeat with JMS
Developing a Simple Example
Introduction to WebLogic JMS
JMS Peer-to-Peer and the PublishSubscribe
Java Messaging Ensures Data Delivery
JMS API Model
JMS Distributed Object Framework
MQSeries Using Java

HTML Tutorials
HTML Tutorial
XHTML Tutorial
CSS Tutorial
TCP/IP Tutorial
XML Tutorials
XML Tutorial
XSL Tutorial
XSLT Tutorial
DTD Tutorial
Schema Tutorial
XForms Tutorial
XSL-FO Tutorial
XML DOM Tutorial
XLink Tutorial
XQuery Tutorial
XPath Tutorial
XPointer Tutorial
RDF Tutorial
SOAP Tutorial
WSDL Tutorial
RSS Tutorial
WAP Tutorial
Web Services Tutorial
Browser Scripting
JavaScript Tutorial
VBScript Tutorial
AJAX Tutorial
DHTML Tutorial
HTML DOM Tutorial
WMLScript Tutorial
E4X Tutorial
Server Scripting
ASP Tutorial
PHP Tutorial
PERL Tutorial
SQL Tutorial
ADO Tutorial
.NET (dotnet)
Microsoft.Net
XML Web Services
ASP.Net
.Net Mobile
C# : C Sharp
ADO.NET
VB.NET
Multimedia
SVG Tutorial
Flash Tutorial
Media Tutorial
SMIL Tutorial
Web Building
Web Browsers
Web Hosting
W3C Tutorial
Web Building
Web Quality
Web Semantic
Web Careers
Java Tutorials
Java Tutorial
JSP Tutorial
Servlets Tutorial
Struts Tutorial
EJB Tutorial
JMS Tutorial
JMX Tutorial
Programming Langauges
C Tutorial
C++ Tutorial
Visual Basic Tutorial
Data Structures Using C
Soft Skills
Communication Skills
Time Management
Project Management
Team Work
Leadership Skills
Corporate Communication
Negotiation Skills


MQSeries Using Java

Previous Next



Introduction to Java's MQSeries

This is not a tutorial on MQSeries for Java. Instead, you are taken through the steps to how to install and configure MQSeries for Java so that you can develop and test JMS programs. If you don't have these products please download them appropriate Web sites. Also, this is not a detailed tutorial on JMS, though JMS sample code is provided that you can download to test your configuration. We will walk through the sample code to explain what it is doing, and to show you how building and testing JMS programs with the IBM tools allow you to write portable JMS code.




Hardware and software requirements

We will be using the Windows operating system versions of MQSeries for Java, so you'll need to have a computer with the Windows NT operating system and with the Service Pack 6a or Windows 2000 operating system with the Service Pack 1. If you're using Windows NT, make sure you have the latest version of the Microsoft scripting support installed on your computer. The easiest way to ensure this is to install the Internet Explorer 5.5 with the latest Service Pack. You'll need at least 256 MB of RAM and about 1.2 GB of free disk space for the download, install, and application files.




Installing and configuration process of the MQSeries



For Installing and configuration of the MQSeries, please visit installation help




QSender class

There are two classes in the sample code that contain JMS code. They are QSender and the QReceiver. Let go through the important methods in each of these classes and look at how each uses JMS to send and receive messages.

When you look at this classes in the new sample code file provided here, you will see that they differ slightly from the classes in the previous article. Because the no-arg constructor for javax.naming.InitialContext now automatically connects to default name server, I have replaced calls to the constructor that require java.util.Properties argument with calls to the no-arg constructor. This also eliminated the need to provide system properties for the JNDI context factory and JNDI provider address. Since those system properties were no longer required, I also removed system property for the JNDI context name, which is why you must type jms/ before the JNDI names of the administered objects.

The messaging functionality of these classes remains the same as the earlier versions. The QSender class is used by QSenderUI to send messages to a queue. The important methods in QSender are setConnection(), setQueue(), and sendMessage(). Here is the setConnection() method.

The next method to look at is setQueue(). This method is called by the QSenderUI when a Queue name is entered into the GUI. Here is the code for setQueue():

public void setConnection(String connectionName)
    throws JMSException, NamingException, Throwable {
    try {
        close();
        QueueConnectionFactory factory =
            (QueueConnectionFactory) getInitContext().lookup(
                 getJmsContext() + connectionName);
        connection = factory.createQueueConnection();
        session = connection.createQueueSession(false, Session.AUTO_ACKNOWLEDGE);
    } catch (Throwable e) {
        setExceptionMessage(e);
        throw e;
    }
}



The next method to look at is setQueue(). This method is called by QSenderUI when a Queue name is entered into the GUI. Here is the code for setQueue():

public void setQueue(String queueName)
    throws JMSException, NamingException, Throwable {
    try {
        if (connection != null)
            connection.stop();
        if (sender != null)
            sender.close();
        Queue queue = (Queue) getInitContext().lookup(getJmsContext() + queueName);
        sender = session.createSender(queue);
        sender.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
        sender.setPriority(4);
        sender.setTimeToLive(0);
        connection.start();
    } catch (Throwable e) {
        setExceptionMessage(e);
        throw e;
    }
}




In setQueue(), the first thing to happen is the QueueConnection is stopped and the QueueSender is closed, if needed. Then, the Queue object is retrieved from JNDI based on the queueName parameter. Next, a QueueSender is created to send messages to the Queue, and attributes on the QueueSender are set. Finally, the QueueConnection is started, permitting access to the messaging system. Once again, there is no MQSeries specific code in this method.




Share And Enjoy:These icons link to social bookmarking sites where readers can share and discover new web pages.
  • blinkbits
  • BlinkList
  • blogmarks
  • co.mments
  • connotea
  • del.icio.us
  • De.lirio.us
  • digg
  • Fark
  • feedmelinks
  • Furl
  • LinkaGoGo
  • Ma.gnolia
  • NewsVine
  • Netvouz
  • RawSugar
  • Reddit
  • scuttle
  • Shadows
  • Simpy
  • Smarking
  • Spurl
  • TailRank
  • Wists
  • YahooMyWeb

Previous Next

Keywords: MQSeries Using Java,websphere mq using java,mqseries queue manager,java sample code,mqseries reason code,web services using java,java open source,java source code,using web services,using source code,mq using java,using open source.


HTML Quizes
HTML Quiz
XHTML Quiz
CSS Quiz
TCP/IP Quiz
XML Quizes
XML Quiz
XSL Quiz
XSLT Quiz
DTD Quiz
Schema Quiz
XForms Quiz
XSL-FO Quiz
XML DOM Quiz
XLink Quiz
XQuery Quiz
XPath Quiz
XPointer Quiz
RDF Quiz
SOAP Quiz
WSDL Quiz
RSS Quiz
WAP Quiz
Web Services Quiz
Browser Scripting Quizes
JavaScript Quiz
VBScript Quiz
AJAX Quiz
DHTML Quiz
HTML DOM Quiz
WMLScript Quiz
E4X Quiz
Server Scripting Quizes
ASP Quiz
PHP Quiz
PERL Quiz
SQL Quiz
ADO Quiz
.NET (dotnet) Quizes
Microsoft.Net Quiz
XML Web Services Quiz
ASP.Net Quiz
.Net Mobile Quiz
C# : C Sharp Quiz
ADO.NET Quiz
VB.NET Quiz
Multimedia Quizes
SVG Quiz
Flash Quiz
Media Quiz
SMIL Quiz
Web Building  Quizes
Web Browsers Quiz
Web Hosting Quiz
W3C Quiz
Web Building Quiz
Web Quality Quiz
Web Semantic Quiz
Web Careers Quiz
Java Quizes
Java Quiz
JSP Quiz
Servlets Quiz
Struts Quiz
EJB Quiz
JMS Quiz
JMX Quiz
Programming Langauges Quizes
C Quiz
C++ Quiz
Visual Basic Quiz
Data Structures Using C Quiz
Soft Skills Quizes
Communication Skills Quiz
Time Management Quiz
Project Management Quiz
Team Work Quiz
Leadership Skills Quiz
Corporate Communication Quiz
Negotiation Skills Quiz

Privacy Policy
Copyright © 2003-2008 Vyom Technosoft Pvt. Ltd., All Rights Reserved.