Hi,
I'm tryin to run in a pocket PC 2003 the MQe example MQ_Message.c which is in the package MQe
2.1.0.8 and it throws an exception in the call:
mqeQueueManager_new(&exceptBlk, &hQueueManager, hLocalQMName, &qmParams, ®Params );
I have only chaged those lines with my WMQ configuration:
///////////////////////////////////////////////////////////////////////////
/* ... Initalize the session */
rc = mqeSession_initialize(&exceptBlk);
display("Creating the Strings\n");
if ( MQERETURN_OK == rc ) {
rc = mqeString_newUtf8(&exceptBlk,&hFieldLabel,"FieldLabel");}
if ( MQERETURN_OK == rc ) {
rc = mqeString_newUtf8(&exceptBlk,&hText,"Hello from WMQe C!!");}
if ( MQERETURN_OK...