c# - Accessing coded char set id in IBM MQ -
when read message remote queue manager has coded character set id 819, sent message has
codedcharsetid=1208 , connecting via 7.x client 6x (remote queue)?
how 819 in export queue instead of 1208, don't want hard code in message
mqqmgr.codedcharsetid =819;
instead want access coded char set id attribute/property(so that, can dynamic).
this might you:
if using mq .net client, character set unicode, 1208 because .net applications run in unicode.
readstring & readline methods of mqmessage class convert data in message characterset specified while doing whereas writestring , writeline methods convert given data characterset specified during put.
Comments
Post a Comment