I am just having this weird problem on xml schema using xsd, which is, the local xml can't find the local xsd file, error is like "Line Number: 3 Column Number: 74 Message: schema_reference.4: Failed to read schema document 'file:abc.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not ." The project structure is both xml and xsd are under the same directory called config, parallel with src, snippet is as below, can anyone tell me what is wrong here? or do you need more info to find out? Thanks so very much!
<?xml version="1.0" encoding="UTF-8"?>
<xml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="abc.xsd" version="1.0">
<source id="configuration" description="def">
...
<?xml version="1.0" encoding="utf-8" ?>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
....
Even