Author |
Message |
Topic: MessageExit and segmented messages |
Flibustier
Replies: 9 Views: 29604
|
Forum: User Exits Posted: Mon Aug 15, 2011 11:18 pm Subject: MessageExit and segmented messages |
This is a condition for our message exit
if(pChannelExitParms->ExitReason == MQXR_MSG)
{
//.. log MQMD structure fields here
}
The value of pMQXQH->StrucId = 'XQ ... |
Topic: MessageExit and segmented messages |
Flibustier
Replies: 9 Views: 29604
|
Forum: User Exits Posted: Mon Aug 15, 2011 8:42 pm Subject: MessageExit and segmented messages |
It is time for you to post some code (and use the code keyword).
Here is a part of our code, that obtains MQMD Structure from agent buffer:
extern "C" __declspec(dllexpor ... |
Topic: MessageExit and segmented messages |
Flibustier
Replies: 9 Views: 29604
|
Forum: User Exits Posted: Sun Aug 14, 2011 11:42 pm Subject: MessageExit and segmented messages |
We have looked at the agent buffer hex/char dump, but only one MQMD structure exists there. If message is segmented, multiple structures ara available from dump, but types and offsets of this structur ... |
Topic: MessageExit and segmented messages |
Flibustier
Replies: 9 Views: 29604
|
Forum: User Exits Posted: Sun Aug 14, 2011 2:28 am Subject: Re: MessageExit and segmented messages |
Secondly, each message passing through a channel message exit has 2 MQMD headers. Are you looking at the correct one? You should only be dumping out the MQMD that is part of the MQXQH header.
... |
Topic: MessageExit and segmented messages |
Flibustier
Replies: 9 Views: 29604
|
Forum: User Exits Posted: Fri Aug 12, 2011 5:10 am Subject: MessageExit and segmented messages |
Hello, we have a problem with message exit and segmented messages. Our message exit is installed on server-channel (server-requester channel pair is used for queue managers communication).
Our mess ... |