Author |
Message |
Topic: Basic JMS Setup |
jason_e
Replies: 4 Views: 2511
|
Forum: IBM MQ Java / JMS Posted: Mon May 17, 2004 10:57 pm Subject: Basic JMS Setup |
Below is the contents of the config file that I use to start JMSAdmin.
I have read through WebSphere MQ - Using Java and it helped me to get
as far as being able to start JMSAdmin. Once I have JMSAd ... |
Topic: Basic JMS Setup |
jason_e
Replies: 4 Views: 2511
|
Forum: IBM MQ Java / JMS Posted: Mon May 17, 2004 12:08 pm Subject: Basic JMS Setup |
Hi,
I'm trying to get started with JMS but it is proving to be quite difficult. The Java side of things is quite easy but it is the environment configuration that is given me trouble.
I have read ... |
Topic: Application Architecture |
jason_e
Replies: 4 Views: 2654
|
Forum: General IBM MQ Support Posted: Wed May 12, 2004 4:53 am Subject: Application Architecture |
Point taken. If my web application needs to put messages onto a queue is it better to have the MQ server on the sample box as the web application for is it acceptable to use the MQ client on the web b ... |
Topic: Message Processing Best Practice |
jason_e
Replies: 4 Views: 2697
|
Forum: General IBM MQ Support Posted: Tue May 11, 2004 10:29 am Subject: Message Processing Best Practice |
I'd start up individual Java listeners on the various queues
Where can I find more information on Java listeners and how to use them with WebSphere MQ? |
Topic: Message Processing Best Practice |
jason_e
Replies: 4 Views: 2697
|
Forum: General IBM MQ Support Posted: Tue May 11, 2004 10:23 am Subject: Message Processing Best Practice |
Are you comforable with having the triggered application on the same box at WebSphere MQ? |
Topic: Message Processing Best Practice |
jason_e
Replies: 4 Views: 2697
|
Forum: General IBM MQ Support Posted: Tue May 11, 2004 10:01 am Subject: Message Processing Best Practice |
I have messages that appear on a queue at a very rapid interval. These messages consist of an XML payload that must be parsed and is used to update a SQL Sever and Oracle database.
When a message ... |
Topic: Application Architecture |
jason_e
Replies: 4 Views: 2654
|
Forum: General IBM MQ Support Posted: Tue May 11, 2004 9:54 am Subject: Application Architecture |
I would like a web application to put a message onto a WebSphere MQ queue. The web server and the MQ server are physically different boxes.
The messages need to be put on the queue (remote) so that ... |
Topic: java.lang.ArrayIndexOutOfBoundsException |
jason_e
Replies: 2 Views: 2134
|
Forum: IBM MQ Java / JMS Posted: Sat Oct 18, 2003 1:44 am Subject: java.lang.ArrayIndexOutOfBoundsException |
Your right, using readFully with a byte array fixed the issue.
byte b [] = new byte[mess.getMessageLength()];
mess.readFully(b);
I'm still woried about why mess.getMessageLenght() is working.
... |
Topic: java.lang.ArrayIndexOutOfBoundsException |
jason_e
Replies: 2 Views: 2134
|
Forum: IBM MQ Java / JMS Posted: Thu Oct 16, 2003 11:23 pm Subject: java.lang.ArrayIndexOutOfBoundsException |
Below is the code I'm using to read messages from a local queue. I received the above mentioned error intermittently. If I change mess.readMessage(lenght) to message.readUTF() everything works buy som ... |
Topic: Auto Start Channels |
jason_e
Replies: 7 Views: 6039
|
Forum: General IBM MQ Support Posted: Wed Oct 15, 2003 12:18 pm Subject: Auto Start Channels |
Hi,
I'm using WebSphere MQ 5.3 on W2k.
How can I setup my channels to automatically start when WebSphere MQ starts? I know it has something todo with channel triggering and SYSTEM.DEFAULT.???
P ... |
Topic: Connection Problem |
jason_e
Replies: 1 Views: 1474
|
Forum: IBM MQ Java / JMS Posted: Tue Sep 30, 2003 3:43 am Subject: Connection Problem |
I'm using the base Java classes to connect to WebSphere MQ. If for some
reason my progie is unable to connect I would like it to retry until the
network connection is restored. Below is the code sni ... |
Topic: MQ Backup Plan |
jason_e
Replies: 1 Views: 2217
|
Forum: General IBM MQ Support Posted: Thu Sep 18, 2003 1:08 am Subject: MQ Backup Plan |
Hi,
I need to be able to recover from a failed MQ server within a few minutes, my server has quite a couple of queues and various channels so manually re-creating them is not a option.
How can I b ... |
Topic: Troubleshooting |
jason_e
Replies: 5 Views: 4450
|
Forum: General IBM MQ Support Posted: Sun Sep 14, 2003 10:14 pm Subject: Troubleshooting |
mmmh, I only have 4 program that use this queue at the moment and
the only option options that they use are below:
Program 1 & 2
-----------------
int openOptions = MQC.MQOO_INPUT_EXCLUSIVE ... |
Topic: Client Trigger Monitor Service |
jason_e
Replies: 2 Views: 2961
|
Forum: General IBM MQ Support Posted: Sun Sep 14, 2003 9:37 pm Subject: Client Trigger Monitor Service |
Thanks for your reply,
Only the client is installed on this box and the config file specifies the client dll and not mqm.dll.
I think I'll reload and see what happens since I didn't do the insta ... |
Topic: Client Trigger Monitor Service |
jason_e
Replies: 2 Views: 2961
|
Forum: General IBM MQ Support Posted: Sat Sep 13, 2003 3:19 am Subject: Client Trigger Monitor Service |
I'm having a problem starting the Client Trigger Monitor Service.
It is installed successfully but doesn't seem to find the necessary dll's
on startup. I copied the entire WebSphere MQ\bin directo ... |