Hi good morning!
I have developed XSLT for transforming xml into xml.
Ex :
input xml
<item>
<name>sample1<name>
<desc></desc>
</item>
output xml
<item>
<name>sample1<name>
<desc/>
</item>
In the transformed xml file I am getting self closing tag for the empty data element.
But for us our parser does not support self closing tag. I want the trans formed file
output with out self closing tag.