on ‎2008 Nov 11 8:26 PM
Hello Everybody,
I am generating an XML file using an FTP adapter and in the generated XML we are having first line as
<XML vesrion ... >, is there any way to remove this line from XML document?
Please provide your inputs as soon as possible.
thanks,
Vijay Kumar T.
Request clarification before answering.
Use this xslt:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:template match="*">
<xsl:copy-of select="." />
</xsl:template>
</xsl:stylesheet>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 7 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.