Author |
Message |
Topic: Enumerating all local queues of a queue manager |
vijeer2001
Replies: 14 Views: 13442
|
Forum: IBM MQ API Support Posted: Thu Jul 08, 2010 6:40 am Subject: Enumerating all local queues of a queue manager |
Thanks for your response. I am not very clear on what to do. I have just tried below to explain the scenario better.
Our application is supposed to monitor all application/non-system IBM Websphere ... |
Topic: Enumerating all local queues of a queue manager |
vijeer2001
Replies: 14 Views: 13442
|
Forum: IBM MQ API Support Posted: Thu Jul 08, 2010 5:51 am Subject: Enumerating all local queues of a queue manager |
PCFMessageAgent agent = new PCFMessageAgent(strQueManager);
// Build the query request.
PCFMessage requestMessage = new PCFMessage(CMQCFC.MQCM ... |
Topic: Enumerating all local queues of a queue manager |
vijeer2001
Replies: 14 Views: 13442
|
Forum: IBM MQ API Support Posted: Thu Jul 08, 2010 2:37 am Subject: Enumerating all local queues of a queue manager |
I am able to enumerate all the queues of the queue manager using PCF. But an extra queue with name starting with "AMQ." is getting created each time I enumerate all the queues. Please guide ... |
Topic: Enumerating all local queues of a queue manager |
vijeer2001
Replies: 14 Views: 13442
|
Forum: IBM MQ API Support Posted: Tue Apr 20, 2010 9:06 pm Subject: Enumerating all local queues of a queue manager |
I'm trying to write a simple tool for monitoring the state of a Queue Manager. One of the things I'd like to monitor is the current queue depth of each local queue. I haven't been able to find a way t ... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Thu Mar 11, 2010 9:59 am Subject: MQ - Having issue in processing special character |
Thanks a ton!!!
mqMsg.Write[Bytes] worked fine and have resolved the issue for us.
Though I am not able to understand why it worked though. |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Wed Mar 10, 2010 7:55 am Subject: MQ - Having issue in processing special character |
We are trying to figure that out on WDI side.
But again, using Q Utility or RFHUTIL, we just plainly pick the file and drop to Queue, and everything works perfectly. Special characters are not conv ... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Wed Mar 10, 2010 6:30 am Subject: MQ - Having issue in processing special character |
Yes, we did check
1- Data recieved on FTP,
2- .Net Data Dump just before Write to MQ
3- & on the Queue directly
The hex values changes only on (3).
Also, we tried doing WriteString alo ... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Tue Mar 09, 2010 6:38 pm Subject: MQ - Having issue in processing special character |
Apart from MQCCSI_Q_MGR, we also tried explicitly passing different CCSID (like 1208, 819, 1250 etc) but got the same result.
We are stuck and not able to move forward because of this issue. Interf ... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Tue Mar 09, 2010 8:39 am Subject: MQ - Having issue in processing special character |
Correction:
The data CCSID of the data is 1250, but as we do not want any conversion on queue, we intentionally pass CCSID as MQCCSI_Q_MGR i.e. 1208. We even tried using 1250 as mqMsg.CharacterSet, ... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Tue Mar 09, 2010 8:35 am Subject: MQ - Having issue in processing special character |
Yes...
Summary:
Interface sends data file using FTP, all characters verified that they have been recieved correctly (file contains many european characters, sent from IBM-1250 system to our Window ... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Tue Mar 09, 2010 5:44 am Subject: MQ - Having issue in processing special character |
We are writing the CCSID (i.e. MQCCSI_Q_MGR) before WriteBytes, plus we checked ToString() that it does have the right characters.
mqMsg = new MQMessage();
... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Mon Mar 08, 2010 10:14 pm Subject: MQ - Having issue in processing special character |
Input File has character "Å " (Hex value 8A)
Using Custom .Net Code - MQ has character "`" (Hex value 60)
Using Q Utility - MQ has same character "Å " (Hex value 8A) ... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Mon Mar 08, 2010 7:17 pm Subject: MQ - Having issue in processing special character |
More insight...
We are recieving data from european country using FTP (Windows-1250 system) on our Windows server.
We verified the character with the interface and it is actually "Å " ... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Mon Mar 08, 2010 3:36 pm Subject: MQ - Having issue in processing special character |
We are doing the comparison after FTP is complete. Input file character is the value shown in the windows system before .Net program picks up the data. After using the .net program, MQ shows the c ... |
Topic: MQ - Having issue in processing special character |
vijeer2001
Replies: 26 Views: 29686
|
Forum: IBM MQ API Support Posted: Mon Mar 08, 2010 12:12 pm Subject: MQ - Having issue in processing special character |
Application that creates the message is in CZECH country. File is being FTPed from CZECH server (IBM-1250) encoding to windows server runing MQ mgr. Net program picks the file from the file system and ... |