我收到以下錯誤消息:無法讀取模式文檔[XSD]因爲
無法讀取模式文檔 「ofbiz.apache.org/dtds/widget-screen.xsd」,因爲:1 )找不到 該文件; 2)文件無法閱讀; 3)文件的根元素 不是
<xsd:schema>
。
我有一個XML文件,如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml>
<screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd">
<screen name="ShippingAgreement">
<section>
<actions>
<set field="selectedMenuItem" value="facilityShipment"/>
<set field="selectedSubMenuItem" value="ShippingContract"/>
</actions>
<widgets>
<decorator-screen name="DelysCommonDecorator" location="${parameters.mainDecoratorLocation}">
<decorator-section name="body">
</decorator-section>
</decorator-screen>
</widgets>
</section>
</screen>
</screens>
爲什麼我不能對其進行驗證對XSD文件http://ofbiz.apache.org/dtds/widget-screen.xsd?
您應該確保您正確訪問資源'http:// ofbiz.apache.org/dtds/widget-screen.xsd'。 – potame 2015-03-25 10:53:22
根元素是而不是。 –
2017-07-05 09:43:15