You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by "Daniel Kulp (JIRA)" <ji...@apache.org> on 2011/09/15 17:56:09 UTC

[jira] [Resolved] (XMLSCHEMA-9) Relative path in multiple import include failed when reading a schema

     [ https://issues.apache.org/jira/browse/XMLSCHEMA-9?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Daniel Kulp resolved XMLSCHEMA-9.
---------------------------------

    Resolution: Duplicate

> Relative path in multiple import include failed when reading a schema
> ---------------------------------------------------------------------
>
>                 Key: XMLSCHEMA-9
>                 URL: https://issues.apache.org/jira/browse/XMLSCHEMA-9
>             Project: XmlSchema
>          Issue Type: Bug
>    Affects Versions: XmlSchema 1.4.7
>            Reporter: Jemini Sam
>         Attachments: RelativeExample.zip
>
>
> When we want to load a schema with import/include on cascade, if the *schemaLocation* is a relative path, the *SchemaBuilder* class fails to find schemas which aren't in the same directory of the schema to load.
> For example, if we have 3 schemas :
> - s1.xsd in directory a/b/c which imports s2.xsd in a/b
> - and s2.xsd which includes or imports s3.xsd in the same directory
> a/b/c/s1.xsd
> a/b/s2.xsd
> a/b/s3.xsd
> And we want to read the schema s1.xsd :
> {code}
> String sourceXSD = "resources/schemas/a/b/c/s1.xsd";
> InputStream is;
> try {
> is = new FileInputStream(sourceXSD);
> XmlSchemaCollection schemaCol = new XmlSchemaCollection();
> schemaCol.setBaseUri(new File(sourceXSD).getParent().replaceAll("\\\\", "/"));
> DefaultURIResolver schemaResolver = (DefaultURIResolver) schemaCol.getSchemaResolver();
> System.out.println("schemaResolver.toString(): " + schemaResolver.getCollectionBaseURI());
> XmlSchema schema = schemaCol.read(new StreamSource(is), null);
> } catch (FileNotFoundException e) {
> e.printStackTrace();
> }
> {code}
> We have an exception on s3.xsd schema which is not found in directory a/b/c.
> See the sources of the example attached.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ws.apache.org
For additional commands, e-mail: dev-help@ws.apache.org