vote up 2 vote down star

I have a CDATA tag within my XML code which contains some hyperlinks.

<smartText><![CDATA[
Among individual stocks, the top percentage gainers in the S.&P. 500 are
<a href ='http://investing.domain.com/research/stocks/snapshot
/snapshot.asp?ric=LNC'>Lincoln National Corp</a> and 
<a href ='http://investing.domain.com/research/stocks/snapshot
/snapshot.asp?ric=PLD'>ProLogis</a>.]]>
</smartText>

I am trying to transform it into an HTML page as follows...

<p class="smartText">
    <xsl:copy-of select="marketSummaryModuleData/smartText"/>                                    
</p>

Unfortunately the output onto the page shows up in pure text, not as html.

Among individual stocks, the top percentage gainers in the S.&P. 500 are <a href ='http://investing.businessweek.com/research/stocks/snapshot/snapshot.asp?ric=PLD'>ProLogis</a> and <a href ='http://investing.businessweek.com/research/stocks/snapshot/snapshot.asp?ric=LNC'>Lincoln National Corp</a>.

The CDATA section is being created from a classic ASP page, so the actual XML output does not contain the CDATA section. Could that be part of the problem? I cannot seem to get the information to render on the page. I have tried multiple solutions offered up by Google searches, such as disable-escape-tags, xsl:copy-of, xsl:value-of and more.

Thank you

flag

Final solution... Please see this posting. stackoverflow.com/questions/706314/… – Shane Larson Apr 1 at 16:53

3 Answers

vote up 1 vote down check

You have to correct the XML so that the desired HTML (and it needs to be well-formed XML) is not contained within a CDATA section.

Any CDATA section is just part of a text() node and the XSLT processor treats it as such.

Putting markup within CDATA is universally acknowledged as bad practice and the reported issue is one typical result.

DOE (disable-output-escaping) is an optional feature in XSLT and is not guaranteed to be implemented and producing the same expected results on different XSLT processors.

To quote the W3C XSLT Spec.:

"An XSLT processor is not required to support disabling output escaping. If an xsl:value-of or xsl:text specifies that output escaping should be disabled and the XSLT processor does not support this, the XSLT processor may signal an error; if it does not signal an error, it must recover by not disabling output escaping. "

and:

"Since disabling output escaping may not work with all XSLT processors and can result in XML that is not well-formed, it should be used only when there is no alternative."

EDIT: To the anonymous person who downvoted this answer:

Dear anonymous fellow, I feel really sorry for you. Being afraid to stand behind your opinion with your own name means you have really very low self esteem and confidence. You obviously need help and the sad thing is that no one can give it to you while you stay anonymous...

link|flag
Independently of whether it is a bad practice or not - won't "disable-output-escaping" do what the OP is after? – Tomalak Mar 31 at 16:11
@Tomalak: Yes it works fine. – AnthonyWJones Mar 31 at 16:13
@Dimitre: It depends on the source of the HTML, it could be the html comes from a source not compliant with HTML formed well enough to be included as-is in a XML document. If the XML document is merely message transport I can't see using a CDATA as a "bad practice". – AnthonyWJones Mar 31 at 16:15
@Tomalak and @AnthonyWJones Your comments were on the first version of my answer. Since then I edited it and probably it now answers your questions. – Dimitre Novatchev Mar 31 at 16:18
@Tomalak d-o-e may or maynot solve the OP's problem, depending on which XSLT processor (s)he is using. – Dimitre Novatchev Mar 31 at 16:22
show 4 more comments
vote up 2 vote down
<p class="smartText">
  <xsl:value-of 
    select="marketSummaryModuleData/smartText" 
    disable-output-escaping="yes"
  />
</p>
link|flag
vote up 0 vote down

I did the same but it does not work for me.. is there any specific reason?...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.