Has anyone had any experience validating XSD (schema) files with XML::Validator::Schema? I can't seem to rid myself of an error when the mod parses the .xsd file.
Error is:
"Found <simpleType> illegally combined with <complexType>."
The .xsd file parses and validates fine under XMLSpy (Windows). I, unfortunately, can't alter the .xsd file as it was provided by a 3 party and serves as a template for their system requirements.
Below is the (simplified) code:
use XML::SAX::ExpatXS;
use XML::Validator::Schema;
my $xml_path = '/path/to/xml/document.xml';
my $xsd_path = '/path/to/schema/document.xsd';
my $xml_va = XML::Validator::Schema->new(file => $xsd_path);
my $parser = XML::SAX::ExpatXS->new(Handler => $xml_va);
eval { $parser->parse_uri($xml_path) };
die "File failed validation: $@" if $@;
exit;
Also, I can't seem to find alternate schema validation tools on CPAN. The schema tools I run into are used to create the .xsd which isn't an option currently.
Any help is appreciated.
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link
or How to display code and escape characters
are good places to start.
|