Author |
Message |
Topic: AMQFCXBA - psiUpdateSubscription |
mqhuang
Replies: 1 Views: 1704
|
Forum: General Discussion Posted: Tue Jan 05, 2010 6:38 am Subject: AMQFCXBA - psiUpdateSubscription |
I tried to setup Pub/Sub for 3 queue managers, two on AS400 and one on Windows.
The proxy subscription for the 2nd queue manager appears in the display when I issue the "DISPLAY SUB(*) SUBTYPE ... |
Topic: Coded Character Set Issue |
mqhuang
Replies: 12 Views: 7735
|
Forum: General IBM MQ Support Posted: Wed Jul 14, 2004 5:41 am Subject: Coded Character Set Issue |
It would only be logical if the .NET program is sending unicode and set ccsid to 1200. The program on iSeries would then get the message by adding GMCONV to GMOPT. MQ should be doing the conversion ... |
Topic: Coded Character Set Issue |
mqhuang
Replies: 12 Views: 7735
|
Forum: General IBM MQ Support Posted: Wed Jul 14, 2004 5:27 am Subject: Coded Character Set Issue |
I asked our .NET person to put in the code to set ccsid to 850 before he does the wirte using the sample code you suggested in other thread
mqMsg = new MQMessage();
mqMsg.CharacterSet = 850; < ... |
Topic: Coded Character Set Issue |
mqhuang
Replies: 12 Views: 7735
|
Forum: General IBM MQ Support Posted: Wed Jul 14, 2004 4:12 am Subject: Coded Character Set Issue |
JasonE - Do you have any code examples that you can share with me? Or, do you know what ccsid should be set to before the .NET client puts the message to the response queue on the iSeries? |
Topic: Coded Character Set Issue |
mqhuang
Replies: 12 Views: 7735
|
Forum: General IBM MQ Support Posted: Tue Jul 13, 2004 12:08 pm Subject: Coded Character Set Issue |
Thanks for your suggestion. I will ask the .NET person to look in that direction. |
Topic: Coded Character Set Issue |
mqhuang
Replies: 12 Views: 7735
|
Forum: General IBM MQ Support Posted: Tue Jul 13, 2004 11:58 am Subject: Coded Character Set Issue |
I did try to convert the unicode by adding GMCONV to GMOPT but it did not work either.
I don't think I want to process the input as Unicode, I was hoping MQ can handle it for me. Besides the messa ... |
Topic: Coded Character Set Issue |
mqhuang
Replies: 12 Views: 7735
|
Forum: General IBM MQ Support Posted: Tue Jul 13, 2004 11:51 am Subject: Coded Character Set Issue |
I forgot to mention the client is running on Windows platform in .NET code. |
Topic: Coded Character Set Issue |
mqhuang
Replies: 12 Views: 7735
|
Forum: General IBM MQ Support Posted: Tue Jul 13, 2004 11:46 am Subject: Coded Character Set Issue |
I know it is Unicode. But what do I do to get the message in its original format without the null after each byte? |
Topic: Coded Character Set Issue |
mqhuang
Replies: 12 Views: 7735
|
Forum: General IBM MQ Support Posted: Tue Jul 13, 2004 11:32 am Subject: Coded Character Set Issue |
I am doing a pilot to send a request from iSeries to a MQ Client and then get a response from the Client throught a separate Queue. The problem I am facing is that the response in the message queue i ... |