Author |
Message |
Topic: What is MQSeries Client???? |
boaz
Replies: 3 Views: 2232
|
Forum: IBM MQ Java / JMS Posted: Sun Dec 15, 2002 6:52 am Subject: Re |
In order to work as a client to MQ Server you can install the client software.
Learn more here:
http://publibfp.boulder.ibm.com/epubs/html/csqzaf06/csqzaf06tfrm.htm
The classes you have are needed ... |
Topic: MQException Reason 2009 |
boaz
Replies: 2 Views: 2665
|
Forum: IBM MQ Java / JMS Posted: Tue Dec 10, 2002 2:50 am Subject: Re |
Hi Vicky !
Thanks for the fast reply!
Look at the table here:
http://www-3.ibm.com/software/ts/mqseries/library/manualsa/csqzae05/csqzae052n.htm
you'll see that the maximum TCP connections on AIX ... |
Topic: MQException Reason 2009 |
boaz
Replies: 2 Views: 2665
|
Forum: IBM MQ Java / JMS Posted: Tue Dec 10, 2002 2:14 am Subject: MQException Reason 2009 |
Hi,
I am getting the following exception:
javax.jms.JMSException: MQJMS2005: failed to create MQQueueManager for 'queue.manager'
and Linked Exception:
com.ibm.mq.MQException: MQJE001: Completio ... |
Topic: Configration JMS with Websphere application server 4.0 |
boaz
Replies: 1 Views: 1987
|
Forum: IBM MQ Java / JMS Posted: Sun Nov 10, 2002 11:32 pm Subject: Links |
Try this:
http://www7b.boulder.ibm.com/wsdd/techjournal/0204_minocha/minocha.html
and this:
http://www7b.boulder.ibm.com/wsdd/library/techarticles/0201_cox/cox.html |
Topic: MANY ways of writing strings to a Queue-CONFUSED |
boaz
Replies: 4 Views: 3660
|
Forum: IBM MQ Java / JMS Posted: Sun Oct 20, 2002 3:56 am Subject: Re |
I think it is easier to use a JMS TextMessage so you simply use
the
setText(java.lang.String string) |
Topic: Sequence Number |
boaz
Replies: 0 Views: 1292
|
Forum: IBM MQ Java / JMS Posted: Mon Oct 14, 2002 11:36 pm Subject: Sequence Number |
I need a way to handle sequence number for messages.
I have various queues and I wish to hold a sequence number for each message within the queue (Not a global sequence for all messages)
Is there a ... |
Topic: Connect to a queue manager on different machine using java |
boaz
Replies: 3 Views: 3000
|
Forum: IBM MQ Java / JMS Posted: Mon Sep 16, 2002 9:15 pm Subject: Another.. |
You can also work with QueueConnectionFactory and QueueConnection and change properties:
qconFactory = new MQQueueConnectionFactory();
qconFactory.setTransportType(JMSC.MQJMS_TP_CLIENT_M ... |
Topic: Multithreaded MQ design help needed |
boaz
Replies: 2 Views: 2690
|
Forum: IBM MQ Java / JMS Posted: Wed Sep 11, 2002 4:19 am Subject: Multithreaded MQ design help needed |
Thanks!
Is there any design patern/sourse code for JMS Pool?
Boaz |
Topic: Defining multiple ports with only one queue manager |
boaz
Replies: 8 Views: 5165
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 28, 2002 7:07 am Subject: Defining multiple ports with only one queue manager |
Can I add multiple listeners per one Queue Manager (on AIX) using INETD file and inetd.conf:
MQSeries1 1414/tcp
MQSeries2 1822/tcp
MQSeries1 stream tcp nowait mqm /mqmtop/bin/amqcrsta amqcrsta ... |
Topic: Defining multiple ports with only one queue manager |
boaz
Replies: 8 Views: 5165
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 28, 2002 6:32 am Subject: Defining multiple ports with only one queue manager |
Thanks,
Seen that, But it says nothing on assigning multiple ports to ONE queue manager. |
Topic: Defining multiple ports with only one queue manager |
boaz
Replies: 8 Views: 5165
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 28, 2002 3:34 am Subject: Defining multiple ports with only one queue manager |
Thanks but I didnt find how to define multiple ports per queue manager? |
Topic: Defining multiple ports with only one queue manager |
boaz
Replies: 1 Views: 2458
|
Forum: IBM MQ Java / JMS Posted: Tue Aug 27, 2002 7:02 am Subject: Defining multiple ports with only one queue manager |
In the MQSeries Clients:
http://www-3.ibm.com/software/ts/mqseries/library/manualsa/csqzaf/csqzaf19.htm
It says: you can define multiple ports with only one queue manager..
How to do that? |
Topic: Defining multiple ports with only one queue manager |
boaz
Replies: 8 Views: 5165
|
Forum: IBM MQ Java / JMS Posted: Tue Aug 27, 2002 7:02 am Subject: Defining multiple ports with only one queue manager |
In the MQSeries Clients:
http://www-3.ibm.com/software/ts/mqseries/library/manualsa/csqzaf/csqzaf19.htm
It says: you can define multiple ports with only one queue manager..
How to do that? |
Topic: connection limit |
boaz
Replies: 6 Views: 3781
|
Forum: IBM MQ Java / JMS Posted: Tue Aug 27, 2002 6:13 am Subject: connection limit |
I dont think this is it.
A channel is a different object and this parameter means you can set up to 100 channels on the same queue manager. BUT - a queue manager is listening on a port, and here you ... |
Topic: Multithreaded MQ design help needed |
boaz
Replies: 2 Views: 2690
|
Forum: IBM MQ Java / JMS Posted: Tue Aug 27, 2002 3:57 am Subject: Multithreaded MQ design help needed |
I have a Multi-threaded application running on a web server in client mode.
Each thread should send a message to MQ Queue manager.
1. Is handling a QueueSession per thread is enough - and then each ... |