使用Remoting时如何在.NET3.5中使用App.config而不需要在App.config中添加Remoting相关配置?

发布于 2024-08-07 15:57:34 字数 187 浏览 2 评论 0原文

我正在尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤城病女 2024-08-14 15:57:34

您可以以编程方式配置远程处理,

以注册通道,您可以

IChannel tcpChannel = new TcpChannel(8888);
ChannelService.RegisterChannel(tcpChannel);

基本上所有内容都可以在代码中配置。

我会推荐 Ingo Rammer 的高级 .Net 远程处理

You can configure remoting programmatically,

to register a channel you can

IChannel tcpChannel = new TcpChannel(8888);
ChannelService.RegisterChannel(tcpChannel);

Basicly everything can be configured in code.

I would recommend Ingo Rammer's Advanced .Net Remoting!

血之狂魔 2024-08-14 15:57:34

您可以将远程处理配置内容放在单独的文件中,然后通过调用以下命令来配置远程处理:

System.Runtime.Remoting.RemotingConfiguration.Configuration(myConfigFileName, true);

You could put your remoting configuration stuff in a separate file, then configure remoting by calling:

System.Runtime.Remoting.RemotingConfiguration.Configuration(myConfigFileName, true);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文