-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
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
Reference resolving doesn't work if different namespaces are used #4
Comments
Hello, Thank you for the issue. The reference solving process was indeed implemented without consideration for different namespaces. I won't implement it right away since it might take some significant changes in the project. Meanwhile to go around it you can use direct references, i.e. instead of using |
Okay, thank you. I already did this :-) |
Hello, Sure, I don't have much time currently so if you want go ahead and thanks in advance :) |
Hi, |
in my use case, I need to resolve many namespaces at same time. I am creating a In my use case I need to implement a The idea of the map is sharing values between namespaces, like so: List<String> baseList = new ArrayList<>();
baseList.add("one");
XmlnsMap<List<String>> xmlnsMap = new XmlnsMap<>();
xmlnsMap.put("xsd:list", baseList);
xmlnsMap.addAlias("xsd", ""); // need better naming
xmlnsMap.addAlias("xsd", "xs");
List<String> list = xmlnsMap.get("list"); // ["one"]
list.add("two");
List<String> xsList = xmlnsMap.get("xs:list"); // ["one", "two"]
xsList.add("three");
List<String> xsdList = xmlnsMap.get("xsd:list"); // ["one", "two", "three"];
boolean isEqual = xsList == baseList && list == baseList; // true |
Hello, I've just performed a new release, 1.0.18. This release introduces multiple namespace usage and reworks how the
Using this type will result in including all the elements defined in another XSD file in the current context. This means that Multiple namespace usage: <xs:schema
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:el="EL_Namespace"
xmlns:sp="SP_Namespace">
<xs:include schemaLocation="./src/test/resources/ns1_part2.xsd"/>
<xs:import namespace="EL_Namespace" schemaLocation="./src/test/resources/ns2.xsd"/>
<xs:import namespace="SP_Namespace" schemaLocation="./src/test/resources/ns3.xsd"/>
<xs:element name="MotherOfBtns">
<xs:complexType>
<xs:sequence>
<xs:element ref="BTN"/>
<xs:element ref="el:BTN"/>
<xs:element ref="sp:BTN"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema> In this example we have two distinct approaches, one file is included and two different namespaces are used. The namespaces should have distinct prefixes and the referred namespace should be present in a I think this pretty much covers this issue, I'll keep this open to receive any feedback. PS: XsdParser only supports local files/namespaces. Any namespace referred should be by a path to the local file. |
Hey, One minor comment from my side. I've seen that you have now a parser configuration which has the namespace map. Maybe it's worth to omit this by just using the java xml style. Please note, that you need to configure the document builder factory to be namespace sensitive. I know that this will get more complicated when it comes to attributes, because normally the string content doesn't has a namespace but in XSD it has (e.g. xsd:string). So you would need to store the current prefix somewhere (can variant from file to file) and resolve accordantly. Best regards, |
Hi,
if a element contains a namespace in the type attribute which refers to another schema, then the reference can't be resolved. Please find a sample attached.
xsd_1 uses a type which is defined in xsd_2. This reference can't be resolved.
Code:
public static void main(final String[] args) { final String path = "xsd_1.xml"; final XsdParser parser = new XsdParser(path); System.out.println(parser.getUnsolvedReferences().size()); }
It would be great if you could make the reference resolving namespace sensitive.
Thank you,
Kai
XSDTest.zip
The text was updated successfully, but these errors were encountered: