I've been using XML::Smart to create xml files like so:
use XML::Smart;
use File::Slurp qw(slurp);
my $dtd = slurp 'file.dtd';
my $xml = XML::Smart->new();
$xml->{data} = {}; # empty data for example.
$xml->apply_dtd($dtd);
$xml->save('file.xml');
I've created the DTD on my own from an example XML file provided to me and this is working well. My problem is that I'm being provided a XML Schema instead of a DTD and I'd rather get this working using the Schema provided to me rather than a DTD I hacked together. I can't find a module/method that does the equivalent to apply_dtd (I'm looking for an apply_schema method).
Is there any module out there that I can use to create a file based on a Schema? Or maybe a module that can do a Schema to DTD conversion?
I'd appreciate any help with this, thanks.
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.