I couldn't find anything that looks like it would help you in
XML:DOM, so the next best thing I could do is try something similar with
XML:LibXML
Here's some sample code that might help you:
#Open and parse XML
open (my $input, "<xmlsample.xml")or die "Could not open xml input.";
my $parser = XML::LibXML->new();
my $pdoc = $parser->parse_file('xmlsample.xml');
close ($input) or die "Could not close xml input.";
#Register Namespace
my $rdoc = XML::LibXML::XPathContext->new($pdoc->documentElement());
$rdoc->registerNs( ns => 'bazongNS' );
#Find node and add element
my ($object) = $rdoc->findnodes("\/\/ns:root");
$object->addNewChild("bazongNS","element");
#Replace file
open (my $OutputXML, ">xmlsample.xml") or die "Could not write XML fil
+e.";
print $OutputXML $pdoc->toString();
close ($OutputXML) or die "Could not close written XML file.";
The sampleXML.xml originally contains:
<root xmlns="bazongNS">
</root>
The sampleXML.xml output contains:
<?xml version="1.0"?>
<root xmlns="bazongNS">
<element/>
</root>
Hope this helps.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.