[xsl] How to insert Root Element in XML Output

Subject: [xsl] How to insert Root Element in XML Output
From: "Gary E. Daniels" <gdaniels@xxxxxxxxxxx>
Date: Wed, 03 May 2006 08:41:32 -0500
Hi. Newbie here. I have an XSL Stylesheet that produces XML as output. How do I code the XSL sheet to add a Root Element to the outputted XML document? Below is an example of the current XML output and the desired XML output with the root element <foo>. Thanks.
Gary



Current XML Output-----


<?xml version="1.0" encoding="utf-8"?>

File #<field id="4"><label>File No.:</label><value>09-06-00120-01</value></field>|
Address <field id="1001"><label>Property Address:</label><value>3901 N Hamilton Ave</value></field>|
City <field id="1002"><label>City:</label><value>Chicago</value></field>|
State <field id="1003"><label>State:</label><value>IL</value></field>|
Zip <field id="1004"><label>Zip:</label><value>60618</value></field>|
Neighborhood <field id="3051"><label>NEIGHBORHOOD (NAME):</label><value>North Center</value></field>|


==========================================================================

Desired XML Output------

<?xml version="1.0" encoding="utf-8"?>
<foo>
File #<field id="4"><label>File No.:</label><value>09-06-00120-01</value></field>|
Address <field id="1001"><label>Property Address:</label><value>3901 N Hamilton Ave</value></field>|
City <field id="1002"><label>City:</label><value>Chicago</value></field>|
State <field id="1003"><label>State:</label><value>IL</value></field>|
Zip <field id="1004"><label>Zip:</label><value>60618</value></field>|
Neighborhood <field id="3051"><label>NEIGHBORHOOD (NAME):</label><value>North Center</value></field>|
</foo>
Gary E. Daniels
Cornerstone Appraisal Company
500 Selkirk Drive
Schaumburg, IL. 60194
847 882-5892 Fax 847 882-5963
mailto:gdaniels@xxxxxxx
http://www.askdata.net


Current Thread