使用 ASP.NET MVC 控制器进行策略注入
我遇到了企业库中的策略注入应用程序块与 ASP.NET MVC 结合使用的问题。
在我的 ControllerFactory 中,我创建控制器,然后在控制器上调用 PolicyInjection.Wrap
。 这给了我一个管理调用处理程序链的控制器的透明代理。
最后,我将透明代理转换为 IController 并返回它。
这似乎工作得很好,除了我为控制器定义的调用处理程序都没有执行。 (例如,我配置了一个日志处理程序,但 PIAB 没有记录任何内容。)
我的最终演员是否以某种方式搞砸了? ControllerBase.Execute()
如何调用我的控制器? 看来我的代理应该被利用。 有人在 ASP.NET 控制器上使用 PIAB 吗?
I'm running into an issue with the Policy Injection Application Block from Enterprise Library in conjunction with ASP.NET MVC.
In my ControllerFactory, I'm creating the controller and then calling PolicyInjection.Wrap
on the controller. This gives me back a Transparent Proxy to the controller which manages the call handler chain.
Finally, I cast the Transparent Proxy to an IController
and return it.
This seems to work well, except that none of the call handlers I've defined for my controller are executing. (For example I have a Logging Handler configured, but nothing is being logged by PIAB.)
Is my final cast messing this up somehow? How does ControllerBase.Execute()
call into my controller? It seems like my proxy should be utilized. Anyone using PIAB on ASP.NET controllers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用 PIAB 来包装 ASP.NET MVC 控制器,并通过调用
PolicyInjection.Wrap(instance)
来将包装 IController 方法的 实现此目的。 我还使用策略注入来包装所使用的 IActionInvoker,它允许记录操作名称。
我还没有成功地使用 MarshalByRefObject 包装来包装控制器,但是界面包装就像一个魅力。
如果您需要更多信息,您可以创建一个包含 IController、IActionFilter、IAuthorizationFilter、IExceptionFilter 和 IResultFilter 中所有方法的接口,然后让您的控制器实现该接口。 然后,您可以将控制器包装为该接口,并通过策略注入获得更多调用。
我希望这有帮助。 如果您有更具体的问题,请发帖。
I am using PIAB to wrap ASP.NET MVC Controllers, and I'm doing so by calling
PolicyInjection.Wrap<IController>(instance)
which will wrap the IController methods. I'm also using policy injection to wrap the IActionInvoker that gets used as well, which allows for logging the action name.
I have not had success wrapping controllers using the MarshalByRefObject wrapping, but the interface wrapping works like a charm.
If you want additional information, you could create an interface that has all the methods from IController, IActionFilter, IAuthorizationFilter, IExceptionFilter and IResultFilter and then have your controllers implement that interface. Then you could wrap your controllers as that interface and get more calls going through policy injection.
I hope that helps. If you have more specific issues please post.
似乎至少有一个人使用它:) - ASP.NET MVC使用企业库中的策略注入应用程序块进行验证(这是 第一个结果 顺便说一句)
Seems at least one person uses it :) - ASP.NET MVC Validation using Policy Injection Application Block in Enterprise Library (this is first result BTW)