Index: src/org/apache/xerces/xinclude/XIncludeHandler.java =================================================================== --- src/org/apache/xerces/xinclude/XIncludeHandler.java (Revision 651270) +++ src/org/apache/xerces/xinclude/XIncludeHandler.java (Arbeitskopie) @@ -2126,7 +2126,7 @@ /** * Returns a URI, relative to the include parent's base URI, of the current * [base URI]. For instance, if the current [base URI] was "dir1/dir2/file.xml" - * and the include parent's [base URI] was "dir/", this would return "dir2/file.xml". + * and the include parent's [base URI] was "dir1/", this would return "dir2/file.xml". * @return the relative URI */ protected String getRelativeBaseURI() throws MalformedURIException { @@ -2150,7 +2150,7 @@ } URI base = new URI(fParentRelativeURI, true); - URI uri = new URI(base, relativeURI); + URI uri = new URI(relativeURI); /** Check whether the scheme components are equal. */ final String baseScheme = base.getScheme();