我有一个类,我想将XML-doc反序列化为:
[XmlRoot(ElementName = "MyType", Namespace = "MyNamespace")]
public class MyClass : MyBase { }
和
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.42")]
[SerializableAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[XmlTypeAttribute(Namespace = "BaseNamespace")]
[XmlRootAttribute("MyBaseType", Namespace = "BaseNamespace", IsNullable = false)]
[GuidAttribute("8d9586ec-f263-48e2-ad47-53093430bce4")]
public class MyBase { }
反序列化时出现错误
在AAA-Fachschema.xsd上找不到元数据的XML模式文件“:null
这是一些简化的Xml:
<?xml version="1.0" encoding="utf-8"?>
<!--some comments -->
<q1:MyType xsi:schemaLocation="http://www.adv-online.de/namespaces/adv/gid/6.0 NAS-Operationen.xsd" xmlns:q1="MyNamespace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gml="http://www.opengis.net/gml/3.2" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:gco="http://www.isotc211.org/2005/gco" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:gts="http://www.isotc211.org/2005/gts" xmlns:ogc="http://www.adv-online.de/namespaces/adv/gid/ogc" xmlns:wfs="http://www.adv-online.de/namespaces/adv/gid/wfs" xmlns:gss="http://www.isotc211.org/2005/gss" xmlns="BaseNamespace">
</q1:MyType>
代码反序列化:
using (var reader = new XmlReader(theFile, new XmlReaderSettings { ValidationType = ValidationType.None }))
{
var ser = new XmlSerializer(typeof(MyClass));
var o = ser.Deserialize(reader);
}
但我完全不确定该Xsd文件设置为由序列化程序加载的位置。
有谁知道在哪里为序列化器设置此信息,甚至更简单地如何完全禁用检查?
答案 0 :(得分:0)
听起来你错过了一个包含的架构,你提供的xsd中的URL似乎没有链接到可下载的架构。如果您尝试从http://repository.gdi-de.org/schemas/adv/nas/6.0下载模式并从本地文件生成类,会发生什么?
看起来有一系列的子引用也会被追赶,但从我给出的链接开始应该有所帮助。