我有一个使用.NET Remoting的Windows服务(是的,我知道远程处理已被WCF取代,但这是一个遗留应用程序)。
当我运行服务时,我得到了这个:
异常类型:System.Runtime.Remoting.RemotingException消息: 服务器遇到内部错误。有关更多信息,请关闭 服务器的.config文件中的customErrors。
我在我的应用程序的配置文件中有这个:
<configuration>
<system.runtime.remoting>
<!-- other settings go here -->
<customErrors mode="Off" />
</system.runtime.remoting>
</configuration>
奇怪的是,我仍然得到这个例外。我做错了什么?