How to remove a message property?

Posted by ilodewijks on 08-Feb-2012 05:00

At a time in my process I add properties to the message using:

<xsl:value-of select="XQHeaderFunc:setProperty(XQHeaderFunc:new(),'NameOfProperty',/XPATHEXPRESION,-1)"/>

How can I remove it later in the process? I have sought an answer, but there only seem to be getters and setters in the HeaderExtension. Any ideas?

All Replies

Posted by Bill Wood on 26-Oct-2013 15:25

You can set the property to null to remove it.   You can do this in XSLT if you can set a null, but I would do it in the JavaScript with XQMessage.setProperty(null);

This thread is closed