xsl-list
[Top] [All Lists]

RE: Adding CDATA to the transformed XML

2005-01-12 08:51:31
Thanks all
 
that worked

-----Original Message-----
From: Andrew Welch [mailto:ajwelch(_at_)piper-group(_dot_)com]
Sent: Wednesday, January 12, 2005 10:46 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] Adding CDATA to the transformed XML



 How to add CDATA to the transformed XML. Is there an option 
to set the CDATA in XSL <Message>
      <Header>
              <SenderFaxNumber><xsl:value-of 
select="Store/FaxPhone"/></SenderFaxNumber>
      </Header>
</Message>

My output should be
<Message>
      <Header>
      
<SenderFaxNumber><![CDATA[111-222-3333]]></SenderFaxNumber>
      </Header>
</Message>

Is there a way to specify it in xsl.But, if i do a 
<SenderFaxNumber><![CDATA[<xsl:value-of
select="Store/FaxPhone"/>]]</SenderFaxNumber>
It does not process this.

Use cdata-section-elements on xsl:output:

<xsl:output cdata-section-elements="SenderFaxNumber"/>

cheers
andrew

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--