The controlleractioninvoker tag has no wiki summary.
0
votes
0answers
128 views
How to test an MVC4 Controller Action that has ActionInvoker.InvokeAction inside it
I have an MVC4 Controller Action that accepts a string parameter and attempts to invoke other actions (via ActionInvoker.InvokeAction) accordingly. InvokeAction needs a ControllerContext and ...
0
votes
0answers
18 views
How do I paginate records which are shown using the “action” method of Zend_View_Helper_Action in view file
In a view script (which is shown using the "feedback" controller's "view" action) I am calling an action of other controller ("comment" controller's "index" action) like this
<?php echo ...
1
vote
1answer
177 views
DI with parameters in Castle Windsor
I'm trying to resolve a dependency like this:
controller.ActionInvoker = kernel.Resolve<IActionInvoker>(controller.GetType());
It was previously registered in this way:
container.Register(
...
0
votes
2answers
628 views
ActionInvoker.InvokeAction(context, “Method”) - how to pass arguments to invoked method?
Hi I have my mvc app and this code snippet:
protected override void OnException(ExceptionContext filterContext)
{
base.OnException(filterContext);
...
0
votes
0answers
318 views
When using custom model binder, binder fires and populates structure, but UpdateModel always fails
I have a web page where I need to return a list of strings and populate an object. I will have to do some custom processing to de-duplicate based on non-ID integers. (not included in the example).
I ...
0
votes
1answer
207 views
Can my ControllerActionInvoker be a singleton?
It doesn't seem like ControllerActionInvoker has any implementation details that require a new instance to be created for each Controller. It seems to have two properties with setters that are never ...
0
votes
0answers
135 views
ControllerActionInvoker trying to find wrong view
I have a strange problem in an application where the routing is working correctly, but the ControllerActionInvoker is getting confused...
The route is
routes.MapRoute(
"client_show",
...
2
votes
2answers
508 views
MVC ControllerActionInvoker and invoking actions
Hi
Is it possible to use a custom action invoker without having to instantiate it in the Controller handler factory? For example in custom controller factory:
IController ...
4
votes
2answers
1k views
ControllerActionInvoker to invoke action with paramters
I use ControllerActionInvoker to invoke controller actions form unit tests
var controllerInvoker = new ControllerActionInvoker();
var result = controllerInvoker.InvokeAction(
...
7
votes
1answer
1k views