vote up 0 vote down star
1

Say I have a very simple XML with an empty tag 'B':

<Root>
  <A>foo</A>
  <B></B>
  <C>bar</C>
</Root>

I'm currently using XSLT to remove a few tags, like 'C' for example:

<?xml version="1.0" ?>

<xsl:stylesheet version="2.0" xmlns="http://www.w3.org/1999/XSL/Transform" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="xml" indent="no" encoding="utf-8" omit-xml-declaration="yes" />

<xsl:template match="*">
	<xsl:copy>
		<xsl:copy-of select="@*" />
		<xsl:apply-templates />
	</xsl:copy>
</xsl:template>

<xsl:template match="C" />

</xsl:stylesheet>

So far OK, but the problem is I end up having an output like this:

<Root>
  <A>foo</A>
  <B/>
</Root>

when I actually really want:

<Root>
  <A>foo</A>
  <B></B>
</Root>

Is there a way to prevent 'B' from collapsing?

Thanks.

flag

I've just realized I can trick the XSL with by setting the output method to HTML: xsl:output method="html" Therefore, I end up having B not collapsed as output. Do you guys see a problem with this solution? – Tiago Fernandez Jun 11 at 9:04
I'm not sure why you want that. "<B/>" and "<B></B>" are absolutely equivalent. If you rely on "</B>" you are doing something wrong. – Tomalak Jun 11 at 10:51
No, I'm not doing wrong. I have to deal with an external provider which fails handling <B/>, so since I can't force him to fix this I have to live with that. – Tiago Fernandez Jun 11 at 11:01
Okay. So they are doing something wrong. :) – Tomalak Jun 11 at 11:46

6 Answers

vote up 3 vote down check

Ok, so here what worked for me:

<xsl:output method="html">

Thank you all for your help :-)

link|flag
Just method="html" and no other change gives <B></B> instead of <B />? – Rashmi Pandit Jun 15 at 7:58
Yes, that's it. – Tiago Fernandez Jun 15 at 11:35
vote up 2 vote down

There is no standard way, as they are equivalent; You might be able to find an XSLT engine that has an option for this behaviour, but I'm not aware of any.

If you're passing this to a third party that cannot accept empty tags using this syntax, then you may have to post-process the output yourself (or convince the third party to fix their XML parsing)

link|flag
See my comment above. It seems xsl:output method="html" would fix it. – Tiago Fernandez Jun 11 at 9:06
With some parsers, and some elements, that will completely omit the closing tag altogether; It can work, but isn't a general solution – Rowland Shaw Jun 11 at 11:08
+1 re post processing. If you are outputting XHTML for the web, you still need to have empty elements with a close element for some browsers (e.g. <script... /> has to be <script ... ></script>) so not such an uncommon problem. – Alan Christensen Jun 11 at 13:20
vote up 1 vote down

It is up to the XSLT engine to decide how the XML tag is rendered, because a parser should see no difference between the two variations. However, when outputting HTML this is a common problem (for <textarea> and <script> tags for example.) The simplest (but ugly) solution is to add a single whitespace inside the tag (this does change the meaning of the tag slightly though.)

link|flag
It could work, but I can't afford modifying the original XML. – Tiago Fernandez Jun 11 at 9:09
Then your simplest option is to post-process the XSLT. The quick and dirty solution is to make a regex to replace <.../> with <...></...> (which many will frown upon because it's not a solid solution if you want to support any kind of XML.) The other, proper solution is to change the XSLT engine. – Blixt Jun 11 at 9:12
What about setting the output method as HTML? I quick test I did prevented empty collapsed elements, but I'm not sure about possible side-effects... – Tiago Fernandez Jun 11 at 9:40
vote up 0 vote down

No. The 2 are syntactically identical, so you shouldn't have to worry

link|flag
The problem is I'm passing this XML to a third party that does not accept collapsed elements (unfortunatelly). – Tiago Fernandez Jun 11 at 8:52
It sounds like they've rolled their own XML parser, in that case, and you have to wonder what else they won't accept. Proper character encodings ? Entities etc.? – Brian Agnew Jun 11 at 10:29
vote up 0 vote down

It should not be a problem if it is or . However if you are using another tool which expects empty XML tags as way only, then you have a problem. A not very elegant way to do this will be adding a space between staring and ending 'B' tags through XSLT code.

link|flag
As I said above, I can't modify the original XML. – Tiago Fernandez Jun 11 at 9:12
Another option for you then is write the empty elements through XSLT code like <xsl:text>&gt;B&lt;&gt;/B&gt;</xslt:text> – Varun Mahajan Jun 11 at 10:57
vote up 0 vote down
<xsl:text disable-output-escaping="yes">
<![CDATA[<div></div>]]>
</xsl:text>

This works fine with C#'s XslCompiledTransform class with .Net 2.0, but may very well fail almost anywhere else. Do not use unless you are programmatically doing the transofrm yourself; it is not portable at all.

link|flag

Your Answer

Get an OpenID
or

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