× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.


  • Subject: RE: MQSeries Java samples
  • From: "THORN Serge (GVA)" <Serge.THORN@xxxxxxxxxxxxx>
  • Date: Tue, 15 May 2001 14:41:31 +0200

Title: RE: MQSeries Java samples
Encore un Alistair...
 

Serge Thorn
Head of IT Architecture
Wealth Management
Lloyds TSB Bank

(+4122 3073581/+4179 2120979 (Mobile) 

-----Original Message-----
From: DUCRET Gilles (GVA) [mailto:Gilles.DUCRET@LloydsBank.ch]
Sent: 15 May 2001 14:09
To: 'JAVA400-L@midrange.com'
Subject: RE: MQSeries Java samples

Hello,

This sample of code put a message on a queue and read the
response on another queue, using the reply to queue mechanism.

For your information there are several redbooks at the ibm website
about MQSeries and Java

                MQQueue inputQueue=null;
                MQQueue outputQueue=null;
                MQGetMessageOptions getMessageOptions=new MQGetMessageOptions();
                String message = new String("This is my message");
                       
                MQMessage msg = new MQMessage();

                msg.writeString(message);
                msg.replyToQueueName = "RESPONSEQUEUENAME";
                inputQueue = qmgr.accessQueue("INPUTQUEUENAME"),openOptions);
                inputQueue.put(msg);

                getMessageOptions.options=MQC.MQGMO_WAIT;
                getMessageOptions.waitInterval=getTimeOut;
                outputQueue=qmgr.accessQueue("RESPONSEQUEUENAME",openOptions);

                MQMessage msg2 = new MQMessage();
                msg2.messageId=msg.messageId;
                outputQueue.get(msg2,getMessageOptions);
                               
                String response=msg2.readString(msg2.getTotalLength());

Cheers

Gilles
-----Original Message-----
From: Alistair Rooney [mailto:alistairr@tbsa.co.za]
Sent: mardi, 15. mai 2001 12:33
To: Java 400 (E-mail)
Subject: MQSeries Java samples


Hi All,

Does anyone have any standard Java samples for Puts or Gets to an MQ Queue
(Like the standard RPG ones).

I would be eternally grateful! (I'll buy you a beer).

TIA

Alistair Rooney
Software Engineer
Tibbett & Britten Africa
+27 31 2047701







**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.

This footnote also confirms that this email message has been swept by
MIMEsweeper for the presence of computer viruses.

www.mimesweeper.com
**********************************************************************
+---
| This is the JAVA/400 Mailing List!
| To submit a new message, send your mail to JAVA400-L@midrange.com.
| To subscribe to this list send email to JAVA400-L-SUB@midrange.com.
| To unsubscribe from this list send email to JAVA400-L-UNSUB@midrange.com.
| Questions should be directed to the list owner: joe@zappie.net
+---


As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.