在 Web 应用程序的 Appdomain 中使用 Ninject 和 WCF 服务?
据我了解,如果您想使用 WCF-Ninject 扩展,它假设您在自己的 AppDomain 中托管 WCF 服务。
我已经在使用 Ninject.Web 扩展和 asp.net 兼容模式来访问成员资格提供程序和会话。
有没有办法将我的 Ninject 与托管在与我的 Web 应用程序相同的 AppDomain 中的 WCF 服务结合使用?
It's my understanding that if you want to use the WCF-Ninject extension, it assumes that you are hosting your WCF services in their own AppDomain.
I'm already using the Ninject.Web extension and asp.net compatibility mode to get at the Membership Provider and Session.
Is there a way utilize my Ninject with my WCF services that are hosted in the same AppDomain as my Web Application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,Ninject.Web 只是代码 - 去看看它。
如果您使用的是 asp.net 兼容模式,像
InRequestScope
这样的东西就会起作用。您还没有真正解释您想要哪一部分 WCF 支持 - 例如,您用于服务的基类可以轻松地从 Ninject.Wcf 中取出,并且不需要 Ninject.Web 所需的相同类型的集成,例如,
NinjectHttpApplication
。我建议:
Well, Ninject.Web is just code - go have a look at it.
Things like
InRequestScope
will just work if you're using asp.net compatibility mode.You havent really explained which bit of the WCF support you want -- e.g., the base class you use for services can easily be lifted out of Ninject.Wcf and doesnt require the same type of integration that is necessary for Ninject.Web, e.g.,
NinjectHttpApplication
.I suggest: