I have a schema here where I am trying to enable / import another schema that does not have a namespace (and this cannot be changed since it comes from another provider and will no longer validate their XML). Here is the first diagram:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:samp="http://sample/namespace" targetNamespace="http://sample/namespace" elementFormDefault="unqualified" attributeFormDefault="unqualified" xmlns:otr1="http://sample/import/namespace1" xmlns:otr2="http://sample/import/namespace2"> <xs:import namespace="http://sample/import/namespace1" schemaLocation="other1.xsd" /> <xs:import namespace="http://sample/import/namespace2" schemaLocation="other2.xsd" /> <xs:include schemaLocation=="NO_NAME_SPACE_PROBLEM.xsd"/> ... <xs:element ref="some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA"/> ... </xs:schema>
And "NO_NAME_SPACE_SHEMA_PROBLEM.xsd", which can be changed to some extent, but it cannot have a namespace.
<?xml version="1.0" encoding="UTF-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="unqualified" attributeFormDefault="unqualified"> <xsd:element name="some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA" type="xsd:string" nillable="true"/> </xs:schema>
The problem is that some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA is placed in the samp namespace. So when I try to set this to XML, it outputs <samp:some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA><child-elem/></samp:some-elem-from-NO_NAME_SPACE_PROBLEM_SCHEMA> , which is a big problem because this XML will not be validated because it is not intended. So my goal is to simply import elements into a namespace without a namespace.
Update 1 . Sorry for the confusion, I used xs: include, not xs: import for a schema without names. Updated syntax for the question. I also use JiBX codegen to create domain objects and JiBX bindings for sorting. Therefore, it must also be compatible with JiBX.
Update 2 . According to Scuffman, now I will use xs: import. I think I will branch this out to a new question.
source share