BizTalk 2013 Getting xml content in map -


how can xml context (the entire msg) using map, source schema, , pass element field in destination schema?

scenario description: msg received (already in msgbox). map located in sendport of type wfc-custom sqlbinding. idea storage entire xml msg database table field of type xml.

i'm not using orchestration on application, on biztalk 2013 r2.

you can use script functoid , write inline xslt below

<xsl:element name="tgtxml"> <xsl:text disable-output-escaping="yes">&lt;![cdata[</xsl:text> <xsl:copy-of select="/" /> <xsl:text disable-output-escaping="yes">]]&gt;</xsl:text> </xsl:element> 

Comments