Relative schema location import fails on Windows machines
---------------------------------------------------------
Key: CXF-2724
URL: https://issues.apache.org/jira/browse/CXF-2724
Project: CXF
Issue Type: Bug
Components: Resources
Environment: Windows XP
Reporter: William Tam
Fix For: 2.3, 2.2.8
If I have a WSDL that imports a schema from a relation path such as below, it
does not work in Windows.
{code}
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:import namespace="urn:RelPath"
schemaLocation="../schemas/configuration/bar.xsd">
</xsd:import>
</xsd:schema>
{code}
It is because of two issues in org.apache.cxf.resource.URIResolver.
1) URIResolver checks for baseUriStr.startsWith("file:/") but Windows file URI
could be "file:C:/foo/bar"
2) URIResolver would include fragment (e.g. #type2) as file path when creates a
File object. This is not showing up as a problem in UNIX machines because "new
URI(baseUriStr)" is able to parse the baseUriStr correctly.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.