We have an XSD file that has no elementFormatDefault
, means that elementFormDefault="unqualified"
.
But we have an issue with creating the XML
that is valid with respect to the XSD.
We asked our support to change the XSD and add this attribute, but they mentioned they cannot change the header of the XSD...
As I found, elementFormDefault
just has impact on local variables, so the variables that are inside the XSD. I want to know what is the impact of changing elementFormDefault="unqualified"
to elementFormDefault="qualified"
.
I mean, if they also change it, it has no impact, am I right?
Can anyone explain and confirm my assumptions?