简体   繁体   English

如何在客户端WebsphereMQ中设置MQMD消息上下文?

[英]How can i set MQMD message context in client WebsphereMQ?

Where should I set MQMD message context in client WebsphereMQ? 客户端WebsphereMQ中应在哪里设置MQMD消息上下文?

MQQueueConnectionFactory mqConnectionFactory = new MQQueueConnectionFactory();
mqConnectionFactory.setHostName(producerProperties.getProperty("wmq.host"));
mqConnectionFactory.setPort(Integer.valueOf(producerProperties.getProperty("wmq.port")));
mqConnectionFactory.setTransportType(JMSC.MQJMS_TP_CLIENT_MQ_TCPIP);
mqConnectionFactory.setQueueManager(producerProperties.getProperty("wmq.manager"));
mqConnectionFactory.setChannel("MyChannel");

/**
 * Producer Section
 */
// Getting producer connection from the MQ server and starting it
Connection producerConnection = mqConnectionFactory.createConnection();
System.out.println("Going to start the producer connection...");
producerConnection.start();

// JMS messages are sent and received using a Session.
Session producerSession = producerConnection.createSession(false,
        Session.AUTO_ACKNOWLEDGE);
// Destination represents here our queue(testQ) on the MQ server.
Destination producerDestination = producerSession.createQueue(producerProperties.getProperty("wmq.queue.name"));

// MessageProducer is used for sending messages
MessageProducer producer = producerSession.createProducer(producerDestination1);
//create text message going to send

TextMessage sendingMessage = producerSession.createTextMessage("Hi Welcome");
sendingMessage.setJMSType(queueName);
System.out.println("Sending the message...");



//sending the message
producer.send(sendingMessage);

See the sample program. 请参阅示例程序。 If you installed to the default location on Windows, it's at: 如果您安装到Windows上的默认位置,则位于:

"C:\Program Files (x86)\IBM\WebSphere MQ\tools\jms\samples\simple\SimpleMQMDWrite.java"

Or on *NIX platforms at: 或在* NIX平台上:

/opt/mqm/samp/jms/samples/simple/SimpleMQMDWrite.java

转到WMQ信息中心,然后查找JMSX *和JMS_IBM_ *选择器。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM