具有基于 Web 的管理控制台的多个 AppDomain
我正在考虑一个基于插件的系统。我将在每个 AppDomain 中创建插件,并通过 WCF 中的名称管道与它们进行通信。但我也希望我的每个插件在 ASP.NET MVC 中都有某种管理控制台,并为我的系统提供一个管理控制台。
我该如何实施这样的系统?所以它们处于不同的进程中。 (Windows 服务上的系统和 IIS 上的管理控制台)
我正在考虑在每个插件中使用 ApplicationHost,以便我可以从那里管理它们。
另外,我的系统需要尽可能长时间地运行,因此我不想将其放在 IIS 上运行。
对于这样的系统有什么建议吗?
I am thinking about a system that is based on plugins. I am going to create my plugins in each AppDomain and talk with them via Name Pipes in WCF. But I also want each of my plugins have some sort of management console in asp.net mvc and one management console for my system.
How can I implement such a system? So they are on seperate processes. (System on Window Services and Management Console on IIS)
I was thinking about using ApplicationHost in each plugins so I can manage them from there.
Also my system needs to be up as long as possible so I don't want to put it and run it on IIS.
Are there any advices for such a system?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您正在开发带有插件的可扩展应用程序,您会发现 MS 的托管可扩展性框架非常有用。
If you are developing extensible application with plugins, you can find Managed Extensibility Framework from MS very useful.