Author |
Message |
Topic: Access CLUSTERED Queue |
saju
Replies: 0 Views: 1807
|
Forum: Clustering Posted: Thu Mar 18, 2004 7:19 am Subject: Access CLUSTERED Queue |
I am working on a project in which I need to access the queues that can be CLUSTER or LOCAL or REMOTE queues.
When I was trying to access a CLUSTER Queue using the option "MQC.MQOO_FAIL_IF_QUIESCI ... |
Topic: MQ Queue CurrentDepth property in amqmdnet |
saju
Replies: 12 Views: 9008
|
Forum: General Discussion Posted: Tue Feb 03, 2004 9:26 am Subject: MQ Queue CurrentDepth property in amqmdnet |
Some extracts from MQSeries information center:
Alias queues
To your program, an alias queue appears to be a queue, but it is really an MQSeries object that you can use to access another queue. T ... |
Topic: EBCDIC to Extended ASCII |
saju
Replies: 3 Views: 2901
|
Forum: General Discussion Posted: Tue Feb 03, 2004 8:19 am Subject: Need Mapping of EBCDIC to "Extended ASCII" |
Thanks JeffLowrey,
Do you have a complete list of mapping of "Extended ASCII" to EBCDIC characters?
I searched for a while to see if some of the extended ASCII characters are supported by EBCDIC o ... |
Topic: EBCDIC to Extended ASCII |
saju
Replies: 3 Views: 2901
|
Forum: General Discussion Posted: Tue Feb 03, 2004 7:25 am Subject: EBCDIC to Extended ASCII |
I am working on a project where I need to convert extended ASCII character to EBCDIC format before putting message from the UNIX to Mainframe side.
Can anyone send me the Mapping for EBCDIC to "Ext ... |
Topic: How to Close The Channel |
saju
Replies: 1 Views: 1963
|
Forum: General Discussion Posted: Tue Feb 03, 2004 7:21 am Subject: How to Close The Channel |
It seems like you are calling the API for getting the connection object to the Queue manager again and again instead of getting connected to the Queue everytime using the Connection handle for the Que ... |
Topic: Pooling connection to Queues |
saju
Replies: 4 Views: 3912
|
Forum: General Discussion Posted: Tue Feb 03, 2004 1:02 am Subject: Pooling connection to Queues |
If you are using Java, you can perhaps store the connection objects in a HashMap or Arraylist. When you want to put the message to a queue belonging to a queue manager, establish connection with that ... |
Topic: Pooling connection to Queues |
saju
Replies: 4 Views: 3912
|
Forum: General Discussion Posted: Mon Feb 02, 2004 11:39 am Subject: Re: Pooling connection to Queues |
Yes!
It will work. You can put message to a queue using the connection pool (Queue manager object). Only thing to be noted is to get connected to the queue each time before you try putting message ... |
Topic: MQ Queue CurrentDepth property in amqmdnet |
saju
Replies: 12 Views: 9008
|
Forum: General Discussion Posted: Mon Feb 02, 2004 11:34 am Subject: MQ Queue CurrentDepth property in amqmdnet |
Try this:
QueueMgr QMgr = new QueueMgr();
try{
MQEnvironment.hostname = Host;
MQEnvironment.port = Port;
MQEnvironment.channel = Channel;
// Establishing connection with Que ... |
Topic: MQ Series to support "Extended ASCII" to "EBC |
saju
Replies: 0 Views: 1499
|
Forum: General Discussion Posted: Mon Feb 02, 2004 11:22 am Subject: MQ Series to support "Extended ASCII" to "EBC |
I am working on a project where I need to sent extended ASCII characters from Unix appln to Mainframe side using MQ Series. Currently my Unix appln written in C is taking care of converting ASCII char ... |