Author |
Message |
Topic: ASCII to EBCDIC conversion in C |
Graham Cogill
Replies: 4 Views: 3675
|
Forum: IBM MQ API Support Posted: Fri Jul 23, 2004 5:41 am Subject: ASCII to EBCDIC conversion in C |
Conversion to EBCDIC runs before the exit if you have them running in the same channel. you will have to have an extra step, one to run the exit then another to do the conversion |
Topic: Windows 2000 MQSeries manager to a manager on the mainframe |
Graham Cogill
Replies: 4 Views: 3972
|
Forum: General Discussion Posted: Tue Jun 29, 2004 5:47 am Subject: Windows 2000 MQSeries manager to a manager on the mainframe |
Thanks for your advice
We believe we have solved the problem.
FYI
We had an exit dll (for formatting the message) running on the same sender channel as we had defined translation to EBCDIC. It ... |
Topic: Windows 2000 MQSeries manager to a manager on the mainframe |
Graham Cogill
Replies: 4 Views: 3972
|
Forum: General Discussion Posted: Tue Jun 29, 2004 12:01 am Subject: Windows 2000 MQSeries manager to a manager on the mainframe |
Have you set the CCSID and Encoding correctly in the MQIIH
we have set CCSID to 500 and format to MQIMSVS
We have an exit running on that sender channel (to reformat the message for the IMS Brid ... |
Topic: Windows 2000 MQSeries manager to a manager on the mainframe |
Graham Cogill
Replies: 4 Views: 3972
|
Forum: General Discussion Posted: Mon Jun 28, 2004 4:24 am Subject: Windows 2000 MQSeries manager to a manager on the mainframe |
We are writing a message from a Windows 2000 MQSeries manager to a manager on the mainframe, with the IMS Bridge (and IMS) as the eventual destination.
We have set the MQMD encoding to MQENC_NATIVE.
... |
Topic: MQSeries Channel Exit |
Graham Cogill
Replies: 11 Views: 6035
|
Forum: General Discussion Posted: Mon May 24, 2004 12:17 am Subject: MQSeries Channel Exit |
Many thanks for all your help. We have had some success now and have managed to get the exit to load.
We are now starting to code the routine and have a further query.
The exit is to connect a d ... |
Topic: MQSeries Channel Exit |
Graham Cogill
Replies: 11 Views: 6035
|
Forum: General Discussion Posted: Fri May 21, 2004 2:05 am Subject: MQSeries Channel Exit |
Write a simple program which does a loadlibrary("yourdll.dll"); and then getprocaddress for your proceedure - can you get that working. This is all MQ is doing for you.
We tried that and got the sa ... |
Topic: MQSeries Channel Exit |
Graham Cogill
Replies: 11 Views: 6035
|
Forum: General Discussion Posted: Fri May 21, 2004 1:25 am Subject: MQSeries Channel Exit |
This is the .DEF file
LIBRARY exit
PROTMODE
DESCRIPTION 'Provides Retry and Channel Exits'
CODE SHARED LOADONCALL
DATA NONSHARED MULTIPLE
HEAPSIZE 4096
STACKSIZE 8192
EXPOR ... |
Topic: MQSeries Channel Exit |
Graham Cogill
Replies: 11 Views: 6035
|
Forum: General Discussion Posted: Thu May 20, 2004 5:54 am Subject: MQSeries Channel Exit |
We rebuilt the DLL with debug mode off, this time we get the following error
Instead of "cannot find the dll" we now have "AMQ6175 - could not load DLL - return code 1114" |
Topic: MQSeries Channel Exit |
Graham Cogill
Replies: 11 Views: 6035
|
Forum: General Discussion Posted: Thu May 20, 2004 1:36 am Subject: MQSeries Channel Exit |
Basically, we gutted an existing IBM sample - amqsqrma.c - and added code for the Microsoft C++ environment, as per "Intercommunications" manual - adding entry MQStart etc.
We cannot get past the loa ... |
Topic: MQSeries Channel Exit |
Graham Cogill
Replies: 11 Views: 6035
|
Forum: General Discussion Posted: Wed May 19, 2004 10:36 pm Subject: MQSeries Channel Exit |
We are trying to create a DLL (written in C++) as an exit on a MQSeries channel. We can compile and make the dll but cannot get it to load despite following the instructions quoted in the IBM manual.
... |