I'm not sure why, but for what ever reason each XML that I parse has an extra blank white space at the end of each node.
Example:
Standard XML
Code:
<xml>
<testing name="Bob" last_name="Johnson"/>
<id number="00001"/>
...
</xml>
Parsed XML
Code:
<xml>
<testing name="Bob" last_name="Johnson" />
<id number="00001" />
...
</xml>
-- XSL
Code:
<!DOCTYPE xsl:stylesheet [
<!ENTITY newline "<xsl:text>
</xsl:text>">
<!ENTITY nbsp "<xsl:text disable-output-escaping='yes'>&nbsp;</xsl:text>">
<!ENTITY lt "<xsl:text disable-output-escaping='yes'>&lt;</xsl:text>">
]>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="no" omit-xml-declaration="yes"/>
<xsl:template>
<xsl:copy-of select="."/>
</template>
</xsl:stylesheet>
Additional Details:
XSL Engine: NXSLT
XSLT version: 1.0