We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e.g. MPD.xsd,
$ cargo run --package xml-schema --bin gen DASH-MPD.xsd > dash-mpd.rs Finished dev [unoptimized + debuginfo] target(s) in 0.03s Running `target/debug/gen DASH-MPD.xsd` thread 'main' panicked at 'Some("urn:mpeg:dash:schema:mpd:2011")', src/libcore/option.rs:1034:5
I think this is because of the namespace definition in the schema:
<xs:schema targetNamespace="urn:mpeg:dash:schema:mpd:2011" attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="urn:mpeg:dash:schema:mpd:2011">
...the targetNamespace matches the unqualified namespace definition xmlns="urn:mpeg:dash:schema:mpd:2011".
targetNamespace
xmlns="urn:mpeg:dash:schema:mpd:2011"
(As a workaround, I can alter the schema so that the namespace definition is qualified, e.g. xmlns:mpd="urn:mpeg:dash:schema:mpd:2011")
xmlns:mpd="urn:mpeg:dash:schema:mpd:2011"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
e.g. MPD.xsd,
I think this is because of the namespace definition in the schema:
...the
targetNamespace
matches the unqualified namespace definitionxmlns="urn:mpeg:dash:schema:mpd:2011"
.(As a workaround, I can alter the schema so that the namespace definition is qualified, e.g.
xmlns:mpd="urn:mpeg:dash:schema:mpd:2011"
)The text was updated successfully, but these errors were encountered: