Hi all I am trying to write an xsl script which strips all those elements in the input xml files which contails white space as their values - and thought of using this simple script -
<?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version ="1.0"> <xsl:strip-space elements="*"/> </xsl:stylesheet> But when I run it on xalan transformer I get only the text and no elements - am I doing something wrong or this is a bug in the xalan processor?? Is there any mailing list where I can register to ask this question? thanks Anamitra
