Policy Injection with ASP.NET MVC Controllers

1k Views Asked by At

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?

2

There are 2 best solutions below

1
On

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.

1
On