使用 ASP.NET MVC 控制器进行策略注入

发布于 2024-07-26 08:33:21 字数 403 浏览 9 评论 0原文

我遇到了企业库中的策略注入应用程序块与 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 技术交流群。

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

发布评论

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

评论(2

习ぎ惯性依靠 2024-08-02 08:33:21

我使用 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.

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