我收到了主题中提到的错误。
我的XML文件是:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown type="SimpleRemotingAsm.RemotingMessageObject,SimpleRemotingAsm" objectUri="RemoteMsgObj.soap" mode="Singleton"/>
</service>
<channels>
<channel ref="http"/>
</channels>
</application>
</system.runtime.remoting>
</configuration>
我已经阅读了很多关于这个问题的帖子,但没有任何帮助我。
我正在使用VS .NET 2013。
答案 0 :(得分:1)
Visual Studio允许您将多个DTD(文档类型定义)文件与App.config或Web.config文件相关联。这个问题的解决方案有点不可思议:
.xsd
文件名列表,为您的配置文件提供XML元素定义。您需要单击此属性的值字段中的...
按钮,然后浏览到正确的XSD文件。一旦您添加了它,&#34;无法找到架构信息......&#34;构建解决方案时,警告应该消失。XSD文件在哪里?我不确定。 Remoting Example: Hosting in Internet Information Services (IIS)文档可能是一个很好的起点。