tadamo has asked for the wisdom of the Perl Monks concerning the following question:

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.

Replies are listed 'Best First'.
Re: Create XML from Schema
by gellyfish (Monsignor) on May 25, 2006 at 15:20 UTC

    You might want to peruse this thread for instance on the perl-xml mailling list.

    There has been quite a lot of discussion of this and related topics.

    /J\

Re: Create XML from Schema
by samtregar (Abbot) on May 25, 2006 at 17:34 UTC
    I think a Schema to DTD converter is your best bet for a short-term solution to your problem. I seem to remember that XML Spy could do that, although I never tried it.

    Long-term, the first step to doing something like this is to create a complete spec-compliant XML Schema processor in Perl. XML::Validator::Schema is a start, but it's a long way from done. Maybe you'd like to help out?

    -sam