Author |
Message |
Topic: Websphere MQ Client Connection using SSL on AIX |
stephenboarder
Replies: 8 Views: 7571
|
Forum: IBM MQ Installation/Configuration Support Posted: Thu Feb 01, 2007 8:11 am Subject: Websphere MQ Client Connection using SSL on AIX |
As above, I am using -type cms and I am testing with a C program amqsputc to test.
Is there anyway to debug this to provide a more meaningful error? |
Topic: Websphere MQ Client Connection using SSL on AIX |
stephenboarder
Replies: 8 Views: 7571
|
Forum: IBM MQ Installation/Configuration Support Posted: Thu Feb 01, 2007 7:54 am Subject: Websphere MQ Client Connection using SSL on AIX |
Any more ideas on this guys??
The steps produced by supportpac MO04 are very similar and I still receive the same error. |
Topic: Websphere MQ Client Connection using SSL on AIX |
stephenboarder
Replies: 8 Views: 7571
|
Forum: IBM MQ Installation/Configuration Support Posted: Wed Jan 31, 2007 6:16 am Subject: Websphere MQ Client Connection using SSL on AIX |
Thanks for the responses.
The queue manager is not the default.
If I remove the SSL entries with the following commands, the client connection is successful;
alter chl(SSL.CLIENTS) chltype(SVRCO ... |
Topic: Websphere MQ Client Connection using SSL on AIX |
stephenboarder
Replies: 8 Views: 7571
|
Forum: IBM MQ Installation/Configuration Support Posted: Wed Jan 31, 2007 5:19 am Subject: Websphere MQ Client Connection using SSL on AIX |
Hi, I am attempting to test an mq client connection to a queue manager on AIX using SSL and I am not having any success. Currently my client connection is from the same AIX box and I am testing using ... |
Topic: Remove x messages from an MQ queue using java app |
stephenboarder
Replies: 13 Views: 16448
|
Forum: IBM MQ Java / JMS Posted: Thu Dec 07, 2006 7:05 am Subject: Remove x messages from an MQ queue using java app |
I am using W2K server.
I believe I am using a client connection. My connect() method has the following line;
MQEnvironment.properties.put(MQC.TRANSPORT_PROPERTY, MQC.TRANSPORT_MQSERIES_CLIENT);
... |
Topic: Remove x messages from an MQ queue using java app |
stephenboarder
Replies: 13 Views: 16448
|
Forum: IBM MQ Java / JMS Posted: Thu Dec 07, 2006 4:20 am Subject: Remove x messages from an MQ queue using java app |
Yes I am heading towards the route of multithreading the java app. I was looking to find out if any of the get options could be added/removed to improve performance. I am surprised that a loop to get ... |
Topic: Remove x messages from an MQ queue using java app |
stephenboarder
Replies: 13 Views: 16448
|
Forum: IBM MQ Java / JMS Posted: Thu Dec 07, 2006 4:09 am Subject: Remove x messages from an MQ queue using java app |
The event is a high queue depth event so the requirement is to remove a configurable number of messages from queue that has reached the high queue depth. |
Topic: Remove x messages from an MQ queue using java app |
stephenboarder
Replies: 13 Views: 16448
|
Forum: IBM MQ Java / JMS Posted: Thu Dec 07, 2006 3:59 am Subject: Remove x messages from an MQ queue using java app |
Yes, the business requirement is to process an event message and remove a configurable number of messages from the queue specified in the event message. This has to be a continually running applicatio ... |
Topic: Remove x messages from an MQ queue using java app |
stephenboarder
Replies: 13 Views: 16448
|
Forum: IBM MQ Java / JMS Posted: Thu Dec 07, 2006 3:15 am Subject: Remove x messages from an MQ queue using java app |
I have a requirement to remove a specified number of messages from an MQ queue as part of a java application. Here is my code snippet;
public void purgeQueue(String queueName, int numberMsgs) throw ... |