in reply to PERL AND XML
It's untested but should work. Currently I push all my xml to a really basic form, then use XSL StyleSheets to transform into the requested formats ( html, csv, ExcelXML, etc. );use strict; use warnings; use XML::Element; my $root = new XML::Element('root'); foreach my $app ( keys %appsrvr ) { my $el = new XML::Element( $app , %{$appsrvr{$app}} ); $root->push_content($el); } print $root->as_XML();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: PERL AND XML
by Anonymous Monk on Jul 30, 2005 at 22:10 UTC | |
by Anonymous Monk on Jul 30, 2005 at 23:09 UTC | |
by BaldPenguin (Friar) on Jul 31, 2005 at 03:50 UTC | |
by BaldPenguin (Friar) on Jul 31, 2005 at 04:03 UTC |