websphere MQ3

大纲:



Creating the queue manager

Creating the local queue

Putting a test message on the local queue

Verifying that the test message was sent


1.Creating the queue manager using WebSphere MQ Explorer
Start WebSphere MQ Explorer.
In the Navigator view, right-click the Queue Managers folder, then click New > Queue Manager. The Create Queue Manager wizard opens.
In the Queue Manager name field, type QM_APPLE.
Select the Make this the default queue manager check box.
Click Next twice to go to Step 3 of the wizard.
Ensure that Auto Start Queue Manager is selected.
Click Next to go to Step 4 of the wizard.
Ensure that the Create listener configured for TCP/IP check box is selected.
If the Finish button is not available, type another port number in the Listen on port number field. If the current value is 1414, try typing 1415 or 1416.
Click Finish.
Results
An icon representing this queue manager is displayed in the Queue Managers folder in the Navigator view of WebSphere MQ Explorer, and the queue manager automatically starts running after you create it, as shown in the following screen capture:


Creating the queue manager using MQSC
About this task
Open a command prompt, and follow these steps:
Create a default queue manager called QM_APPLE by typing the command:
crtmqm -q QM_APPLEMessages tell you that the queue has been created and that the default WebSphere MQ objects have been created.
Start this queue manager by typing the command:
strmqm

A message tells you when the queue manager has started.
Results
You have now created a queue manager with the name QM_APPLE. The next task is to create a local queue that this queue manager will manage.


2.Creating the local queue using WebSphere MQ Explorer
In the Navigator view, expand the Queue Managers folder.
Expand queue manager QM_APPLE.
Right click the Queues folder, then click New > Local Queue... The New Local Queue wizard opens.
In the Name field, type Q1
Click Finish.
Results
The new queue, Q1, is displayed in the Content view, as displayed in the following screen capture:


If the queue is not displayed in the Content view, click Refresh at the top of the Content view.

Creating the local queue using MQSC
About this task
Open a command prompt and follow these steps:
Enable MQSC commands by typing the command:
runmqsc

Type the following command:
define qlocal (Q1)

Messages tell you that the queue has been created and that the default WebSphere MQ objects have been created.
Stop MQSC by typing the command:
end

Results
You have now created a local queue called Q1. The next task is to put a test message to this newly created local queue.




3.Putting a test message on the queue using WebSphere MQ Explorer
在Eclipse 中,创建如下类:
[java] view plaincopyprint?package com.ibm.test;

import java.io.IOException;

import com.ibm.mq.MQC;
import com.ibm.mq.MQException;
import com.ibm.mq.MQGetMessageOptions;
import com.ibm.mq.MQMessage;
import com.ibm.mq.MQPutMessageOptions;
import com.ibm.mq.MQQueue;
import com.ibm.mq.MQQueueManager;

public class MQSample {
//定义队列管理器和队列的名称
private static String qmName;
private static String qName;

/**
* @param args
*/
public static void main(String[] args) {

qmName ="QM_APPLE";
qName = "Q1";
System.out.println("QManager:"+qmName);
System.out.println("QueueName:"+qName);
try {
//定义并初始化队列管理器对象并连接
MQQueueManager qMgr = new MQQueueManager(qmName);

// 设置将要连接的队列属性
// Note. All WebSphere MQ Options are prefixed with MQC in Java.
@SuppressWarnings("deprecation")
int openOptions = MQC.MQOO_INPUT_AS_Q_DEF | MQC.MQOO_OUTPUT;

//连接队列
MQQueue localQ = qMgr.accessQueue(qName, openOptions);

//定义一个简单的消息
MQMessage putMessage = new MQMessage();
putMessage.writeUTF("Hello World!");

//设置写入消息的属性(默认属性)
MQPutMessageOptions pmo = new MQPutMessageOptions();

//将消息写入队列
localQ.put(putMessage,pmo);

// MQMessage retrievedMessage = new MQMessage();
// retrievedMessage.messageId = putMessage.messageId;
//
// //设置取出消息的属性(默认属性)
// MQGetMessageOptions gmo = new MQGetMessageOptions();
//
// // 从队列中取出消息
// localQ.get(retrievedMessage, gmo);
// String msgText = retrievedMessage.readUTF();

// System.out.println("The message is: " + msgText);

//关闭队列
localQ.close();
//从队列管理器断开
qMgr.disconnect();
}catch (MQException ex) {
System.out.println("A WebSphere MQ error occurred : Completion code "
+ ex.completionCode + " Reason code " + ex.reasonCode);
}catch (IOException ex) {
System.out.println("An error occurred whilst writing to the message buffer: " + ex);
}catch(Exception ex){
ex.printStackTrace();
}

}

}

package com.ibm.test;

import java.io.IOException;

import com.ibm.mq.MQC;
import com.ibm.mq.MQException;
import com.ibm.mq.MQGetMessageOptions;
import com.ibm.mq.MQMessage;
import com.ibm.mq.MQPutMessageOptions;
import com.ibm.mq.MQQueue;
import com.ibm.mq.MQQueueManager;

public class MQSample {
//定义队列管理器和队列的名称
private static String qmName;
private static String qName;

/**
* @param args
*/
public static void main(String[] args) {

qmName ="QM_APPLE";
qName = "Q1";
System.out.println("QManager:"+qmName);
System.out.println("QueueName:"+qName);
try {
//定义并初始化队列管理器对象并连接
MQQueueManager qMgr = new MQQueueManager(qmName);

// 设置将要连接的队列属性
// Note. All WebSphere MQ Options are prefixed with MQC in Java.
@SuppressWarnings("deprecation")
int openOptions = MQC.MQOO_INPUT_AS_Q_DEF | MQC.MQOO_OUTPUT;

//连接队列
MQQueue localQ = qMgr.accessQueue(qName, openOptions);

//定义一个简单的消息
MQMessage putMessage = new MQMessage();
putMessage.writeUTF("Hello World!");

//设置写入消息的属性(默认属性)
MQPutMessageOptions pmo = new MQPutMessageOptions();

//将消息写入队列
localQ.put(putMessage,pmo);

// MQMessage retrievedMessage = new MQMessage();
// retrievedMessage.messageId = putMessage.messageId;
//
// //设置取出消息的属性(默认属性)
// MQGetMessageOptions gmo = new MQGetMessageOptions();
//
// // 从队列中取出消息
// localQ.get(retrievedMessage, gmo);
// String msgText = retrievedMessage.readUTF();

// System.out.println("The message is: " + msgText);

//关闭队列
localQ.close();
//从队列管理器断开
qMgr.disconnect();
}catch (MQException ex) {
System.out.println("A WebSphere MQ error occurred : Completion code "
+ ex.completionCode + " Reason code " + ex.reasonCode);
}catch (IOException ex) {
System.out.println("An error occurred whilst writing to the message buffer: " + ex);
}catch(Exception ex){
ex.printStackTrace();
}

}

}
编译时需要添加Websphere MQ相关类。


4.Verifying that the test message was sent using WebSphere MQ Explorer
In the Navigator view, expand the Queue Managers folder, then expand QM_APPLE.
Click the Queues folder.
In the Content view, right-click Q1, then click Browse Messages.... The Message browser opens to show the list of the messages that are currently on Q1.
Double-click the last message to open its properties dialog.
Results
On the Data page of the properties dialog, the Message data field displays the content of the message in human-readable form, as shown in the following screen capture:


Verifying that the test message was sent using MQSC
About this task
The amqsget sample program is used to get the message back from the queue.
Open a command prompt and follow these steps:

Start the amqsget sample program:
On Windows®, type the following command:amqsget Q1
On Linux®, change to the /opt/mqm/samp/bin directory and type the following command: ./amqsget Q1
Results
The sample program starts, and your message is displayed along with any other messages on this queue. After a pause of 15 seconds, the sample ends and the command prompt is displayed again.

Congratulations! You have now completed this tutorial.
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值