Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Applying this stylesheet:</p> <pre><code>&lt;xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"&gt; &lt;xsl:template match="@*|node()"&gt; &lt;xsl:copy&gt; &lt;xsl:apply-templates select="@*|node()"/&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;xsl:template match="*[local-name()='EscXml']"&gt; &lt;xsl:copy&gt; &lt;xsl:value-of select="." disable-output-escaping="yes"/&gt; &lt;/xsl:copy&gt; &lt;/xsl:template&gt; &lt;/xsl:stylesheet&gt; </code></pre> <p>To this sample document:</p> <pre><code>&lt;ExternalEvent xmlns="http://www.RedEyedMonster.co.uk/Integration/ESB"&gt; &lt;XmlType&gt;Testing1Two6&lt;/XmlType&gt; &lt;EscXml&gt;&amp;lt;!-- Edited by XMLSpy&amp;#174; --&amp;gt; &amp;lt;note&amp;gt; &amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt; &amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt; &amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt; &amp;lt;body&amp;gt;Don&amp;apos;t forget me this weekend!&amp;lt;/body&amp;gt; &amp;lt;/note&amp;gt;&lt;/EscXml&gt; &lt;/ExternalEvent&gt; </code></pre> <p>Gives me the following result – also in BizTalk:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;ExternalEvent xmlns="http://www.RedEyedMonster.co.uk/Integration/ESB"&gt; &lt;XmlType&gt;Testing1Two6&lt;/XmlType&gt; &lt;EscXml&gt; &lt;!-- Edited by XMLSpy® --&gt; &lt;note&gt; &lt;to&gt;Tove&lt;/to&gt; &lt;from&gt;Jani&lt;/from&gt; &lt;heading&gt;Reminder&lt;/heading&gt; &lt;body&gt;Don't forget me this weekend!&lt;/body&gt; &lt;/note&gt; &lt;/EscXml&gt; &lt;/ExternalEvent&gt; </code></pre> <p>Hope this helps :]</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload