1、运行时,提示错误:
Looks like you forgot to register the http module Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule
To fix this add
<add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.Windsor" />
to the <httpModules> section on your web.config.
2、我已经按照这里的提示改写了 web.config,但是还是不好使。
网址:http://stackoverflow.com/questions/258011/looks-like-you-forgot-to-register-the-http-module-with-windsor-castle-with-iis7
<system.web> <httpModules> <add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.Windsor" /> </httpModules> </system.web> <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <modules runAllManagedModulesForAllRequests="true"> <remove name="PerRequestLifestyle"/> <add name="PerRequestLifestyle" type="Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleModule, Castle.Windsor"/> </modules> </system.webServer>
3、哦,我使用的框架是Abp,应该是支持 LifestylePerWebRequest 吧?
十分感谢!