Answer by dret for XML Validation Confusion
ok, since david asked for it, here is the full explanation: element declarations in XSD can either be global or local. global declarations are on the level directly under xs:schema, local declarations...
View ArticleAnswer by dret for XML Validation Confusion
david is correct, but the much better way for fixing this is to generally define locally defined elements as qualified in the schema. XSD has a terrible default there (which is the reason why your XSD...
View ArticleAnswer by David Hall for XML Validation Confusion
There are a couple of things going on, and a couple of possible solutions to your issue.The solution that you can use will depend on whether you can change the XML, the XSD or both.Below is some XML...
View ArticleXML Validation Confusion
I'll admit, I'm an XML newbie. I'm having trouble validating some xml against a schema. Here is the relevant part of my schema:<?xml version="1.0" encoding="UTF-8"?><xs:schema...
View Article