Dynamic CTX payload
My question is related to Message Center. Is it possible to substitute a ctx node value into another node at the time when our event call is being bound to the delivery template?
Let's say I wish to send a SOAP event to MC using payload like the following:
<ctx>
<recipient>
<firstName>xxxxx</firstName>
<fullName>Full Name is equal to: <%= ctx.recipient.firstName%></fullName>
</recipient>
</ctx>
Inside the template I've used <%= rtEvent.ctx.recipient.fullName %>
When I'm trying to send the SOAP call, the output is coming as "Full Name is equal to: " and the firstName section is blank.
I'm pretty sure that my implementation is wrong and maybe it is not possible at all, but still will look forward to your inputs.
