私が書いたスキーマでxmlファイルを検証しようとしていますが、次の行で失敗します:
Element 'Route', attribute '{http://www.w3.org/XML/1998/namespace}space': The attribute '{http://www.w3.org/XML/1998/namespace}space' is not allowed.
XML ファイルには、次のものが含まれる場合があります。
<Route xml:space="preserve">
</Route>
これが明らかに問題を引き起こしています。これを許可するには、xsd ファイルをどうすればよいですか?
これが私のXSDで、関連のないものはすべて削除されています
<?xml version="1.0" standalone="yes"?>
<xs:schema id="NewDataSet" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="NewDataSet">
<xs:element name="Route" type="xs:string" minOccurs="0" />
<xs:element name="FurtherRequirements" type="xs:string" minOccurs="0" />
などなど
すべての助けに感謝します!