使用Remoting时如何在.NET3.5中使用App.config而不需要在App.config中添加Remoting相关配置?
我正在尝试将 App.config 用于托管远程处理并在 .NET3.5 中开发的 Windows 服务应用程序。在该 App.config 中,我想保留一些将在整个解决方案中使用的值。我没有向其中添加远程关系配置内容。但是在运行应用程序时,它需要 App.config 中的远程处理相关配置内容。我不想将远程处理相关的配置放在该文件中。我该如何解决这个问题?
I am trying to use an App.config for a Windows Service application which is hosting Remoting and is developed in .NET3.5. In that App.config, I would like to keep some values which I will be using across the solution. I am not adding Remoting relation configuration stuff to it. But while running application it is expecting Remoting related configuration stuff in App.config. I dont want to put Remoting related configuration in that file. How I can resolve this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以以编程方式配置远程处理,
以注册通道,您可以
基本上所有内容都可以在代码中配置。
我会推荐 Ingo Rammer 的高级 .Net 远程处理!
You can configure remoting programmatically,
to register a channel you can
Basicly everything can be configured in code.
I would recommend Ingo Rammer's Advanced .Net Remoting!
您可以将远程处理配置内容放在单独的文件中,然后通过调用以下命令来配置远程处理:
You could put your remoting configuration stuff in a separate file, then configure remoting by calling: