Joined: 13 Mar 2013 Posts: 553 Location: Home Office
I think you need to get your concepts right.
you are copying :
1- message headers
2- entire message
why ? what do you want to copy? Only the headers or the whole message ?
Quote:
so I user this script to display it in message but I can't see response message:
Code:
CALL CopyMessageHeaders();
CALL CopyEntireMessage();
DECLARE path REFERENCE TO OutputRoot.XMLNSC.Message;
DECLARE responseCode,responseMsg CHARACTER;
SET responseCode = '009';
what you have added here is not a script. Is part of an ESQL program
Code:
SET responseMsg =OutputExceptionList;
you are copying a tree (exception list) to a character variable.
why do you not set the ResponseCode and ResponseMessage in the output tree directly , rather than saving the values in local variables before assigning to the output tree ?
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum