我开发(重写到 WCF)一个文件解析 web 服务接受string[]
和返回ISection[]
,但实际上这是一组嵌套接口:
namespace Project.Contracts // Project.Contracts.dll
{
public interface ISection { }
public interface ISummarySection : ISection { }
public interface IDataSection : ISection { }
}
和类:
namespace Project.Format.A // Project.Format.A.dll
{
[DataContract]
public class SummarySectionFormatA : ISummarySection { }
[DataContract]
public class DataSectionFormatA : IDataSection { }
}
服务接口及其实现:
[ServiceContract]
public interface IService // Project.Contracts.dll
{
ISection[] Parse(string format, string[] data);
}
[ServiceKnownType(typeof(SummarySectionFormatA))] // tried this also
[ServiceKnownType(typeof(DataSectionFormatA))]
public class Service : IService // Project.Service.dll
{
public ISection[] Parse(string format, string[] data)
{
return Factory.Create(format).Parse(data);
}
}
我尝试declaredTypes
在服务器和客户端上进行配置:
<system.runtime.serialization>
<dataContractSerializer>
<declaredTypes>
<add type="Project.Contracts.ISumarySection, Project.Contracts">
<knownType type="Project.Format.A.SummarySectionFormatA, Project.Format.A" />
</add>
<add type="Project.Contracts.IDataSection, Project.Contracts">
<knownType type="Project.Format.A.DataSectionFormatA, Project.Format.A" />
</add>
</declaredTypes>
</dataContractSerializer>
</system.runtime.serialization>
但仍然得到同样的错误:
“不应使用数据合同名称‘DataSection:http://schemas.example.com/Parse’键入‘DataSectionFormatA’。
或者
基础连接已关闭:连接意外关闭。
我无法使用 KnownTypeAttribute 装饰接口,因为 Contracts 项目不引用 Format 项目,并且引用会破坏设计。这就是为什么我想使用配置。