The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
22 views

ActionFilter is not executing in WebApplication but executing in WebApi

I have created an ActionFilterAttribute public class LoggingNHibernateSessionAttribute : ActionFilterAttribute The purpose of the filter as name indicates is logging and opens and commits a ...
2
votes
1answer
34 views

Autofac 2.6 and Orchard 1.6 - Action Filter construction injection

To begin with two things. I am trying to achieve an action filter that logs when and action begins and when it end I am well aware of the .AsActionFilter() method in Autofac 3.0 BUT... The project ...
2
votes
2answers
62 views

Setting TempData within a ActionFilterAttribute

I have a custom action filter, that inside the OnActionExecuting, depending on certain criteria, logs out a user and redirects them to the home page of the site. The (stripped back) code for the ...
2
votes
0answers
331 views

Async WebApi ActionFilterAttribute. An asynchronous module or handler completed while an asynchronous operation was still pending

I understand await waits for a task (an awaitable) to complete. But I'm confused about what that actually means. The code that doesn't work: public async override void ...
0
votes
1answer
177 views

ASP.NET MVC Custom Filter Attribute With Controller/Action Names

I have a custom ActionFilterAttribute class that sends the user to an error screen with a link to return to a previous page. This attribute accepts two controller/action pairs: one for the error ...
0
votes
1answer
209 views

WebApi ActionFilterAttribute, HttpActionContext access user name (IPrincipal) [duplicate]

I need to access the currently logged in user in my action filter. The identity is set by a DelegatingHandler further up the chain of execution. I can access the current IPrincipal using ...
1
vote
1answer
233 views

Error Handling in Web Api Self Hosted Server for ActionFilterAttribute

I have a project running ASP.Net WebApi in a self hosted configuration and I am using an ActionFilterAttribute class as a filter for some security checks and an ExceptionFilterAttribute as the ...
2
votes
1answer
75 views

Skip OnActionExecuted execution

I made an ActionFilterAttribute that has the OnActionExecuted method implemented. That means, it runs after the Action method. But, in certain condition, I want the OnActionExecuted to not be ...
2
votes
1answer
116 views

Tell in an ActionFilterAttribute whether this is a redirect

I am trying to create an ActionFilterAttribute that runs only once per request, so I am doing something like this. public override void OnActionExecuting(ActionExecutingContext filterContext) { ...
0
votes
0answers
49 views

How to call one ActionFilterAttribute from another ActionFilterAttribute?

the code below is not working as expected. When I apply RespondentCompletedAttribute to an action, the attribute will first run AssessmentActiveAttribute. If condition (MySession.Assessment == ...
0
votes
1answer
152 views

Asp.net mvc3 filter and custom model binder execution order

In my application I have an action filter with order 0 to handle timeout (we check if the session is null. If yes, then direct the user to timeout page) which is decorated on all Controller actions. ...
0
votes
1answer
153 views

Why would a custom MVC3 action filter work on one controller action but not on another?

Here's the situation. I've got a single action filter that I'm using in two different controllers. The action filter is defined as: public class ValidSubmissionAttribute : FilterAttribute, ...
0
votes
1answer
49 views

webapi actionfilters, how to inject a value when using different argument types that inherit from a base type

I have a base request type.. class RequestBase { public string inputId; public string derivedid; } and types that inherit .. class RequestA : RequestBase { public string name; } and ...
1
vote
1answer
380 views

ActionFilterAttribute ninject injection - DbContext has been disposed

I have my project which uses the usual Repository pattern with Services and Unit of Work (all with Ninject injecting the dependencies from a NinjectModule), but I'm trying to access a service from an ...
1
vote
0answers
87 views

How can I remove a parameter from the HttpContext.Request.Params collection?

How can I remove a parameter from the HttpContext.Request.Params collection? I added it on the client as a form of "can't add a header to an iframe request" but now I want to remove it from the ...
1
vote
1answer
49 views

If I wanted to use attributes to muck about with an MVC return contentType, would it be better to do it in OnResultExecuting or OnResultExecuted?

In the pursuit of solving an absurd problem, I need to append a value to my querystring (did that in javascript) and test if it exists on the server (because this may come from ajax or an iframe, so ...
2
votes
0answers
79 views

How to call a controller action with attributes enforced/applied in ASP.NET MVC?

When I attempt to call a specific controller action (method) from within another controller action (method), the attributes that have been applied to the action I'm calling aren't applied/enforced. ...
0
votes
0answers
140 views

ActionFilter Reload/refresh by Cookie

Question Is there any other way than Server.TransferRequest to update the current QueryString (readonly collection)? I would like to set the QueryString in certain cases, but without reload of page. ...
0
votes
1answer
42 views

How to get a value from a property in actionfilter

the title looks a bit weird sorry for it. Well I am new in Asp.net MVC 3. I want to create an attribute for my one property which name is national identity number. public class ...
0
votes
1answer
131 views

MVC3: Grouping Action Filters or calling Action Filters from other action filters

I'm trying to write an attribute class that can be used on all my "admin" actions which then effectively applies all relevant action/auth filters to that action. For instance, I always apply the ...
2
votes
0answers
252 views

ActionExecutingContext - ActionParameters vs RouteData

Given the following code: public class MyActionFilter : ActionFilterAttribute { public override void OnActionExecuting(ActionExecutingContext filterContext) { var a = ...
4
votes
2answers
1k views

Why is my ASP.NET Web API ActionFilterAttribute OnActionExecuting not firing?

I'm trying to implement what's seen here: http://www.piotrwalat.net/nhibernate-session-management-in-asp-net-web-api/ but I'm having an issue with my NhSessionManagementAttribute. I've set ...
8
votes
2answers
996 views

Async action filter in MVC 4

I have an action filter that when used in certain specific conditions has to perform a web service call to ensure that the current state is valid. This initially seemed like an ideal candidate for ...
2
votes
2answers
832 views

MVC Action Filters using parameters passed to the for ActionResult?

I created a custom Action Filter with no problem. But I would like to modify the Action Filter to use some of the parameters actually passed to my method. So if I have the following method: ...
0
votes
0answers
61 views

Google PDF Viewer not able to access restricted areas

The site that I am building requires a user to be logged in at all times, or they'll be redirected to the Login area. I am having a bit of difficulty in that I have an AssetsController which serves ...
1
vote
3answers
123 views

ASP.NET MVC: ActionMethodSelector / ActionFilter (Attribute) naming conventions

What do you think is the best naming convensions for ActionMethodSelector to differentiate from ActionFilter (Attributes). I need an ActionMethodSelector that does the same as the ...
0
votes
2answers
172 views

ViewData of Actionfilter is not available in Base Controller property

I have a basecontroller like this [Action] public abstract class ApplicationController : Controller { public bool HasRight { get { return ((bool)ViewData["Actions2"]); } } ...
3
votes
3answers
699 views

How do I get the current Url from within a FilterAttribute?

I am writing an Authorize filter attribute adn I'm having trouble figuring out how to get the current url as a string so I can pass it as a parameter to the LogOn action. The goal is that if a user ...
0
votes
4answers
2k views

Using Action Filters on MVC C# using query String

Im using class name RightCheckerAttribute to check user permission in MVC3 application... So the RightCheckerAttribute class is like this... public bool isAdmin { get; set; } public override ...
0
votes
1answer
68 views

ASPNET MVC2 ActionFilter Order attribute not accessible due to procetion level

I'm trying to set Order attribute of ActionFilterAttribute in my ASP.NET MVC2 application. <LoginFilterAttribute(Order = 1)> _ <AdminFilterAttribute(Order = 2)> _ Visual Studio ...
10
votes
4answers
1k views

How to disable a global filter in ASP.Net MVC selectively

I have set up a global filter for all my controller actions in which I open and close NHibernate sessions. 95% of these action need some database access, but 5% don't. Is there any easy way to ...
2
votes
1answer
820 views

Access Session.SessionID in ActionFilterAttribute

I have created Controller Attribute and would like to read SessionId but get error "An object reference is required for the non-static field, method, or property". What is the best method to access ...
1
vote
1answer
317 views

ActionFilterAttribute is getting called for all actions

Maybe I have misunderstood the point of the ActionFilterAttribute, but what I have now is the following: public class MyCustomAttribute : ActionFilterAttribute { public override void ...
2
votes
1answer
93 views

ActionFilter does not execute with cached output

I am using the OutputCache attribute to cache my home page content [OutputCache(CacheProfile = "Default")] public ActionResult Index() { ..... } I also have a custom global attribute set-up ...
0
votes
1answer
585 views

How do I unit test a custom ActionFilter in ASP.Net MVC

So I'm creating a custom ActionFilter that's based mostly on this project http://www.codeproject.com/KB/aspnet/aspnet_mvc_restapi.aspx. I want a custom action filter that uses the http accept headers ...
1
vote
1answer
426 views

Action Filter Never Being Hit In ASP.NET MVC 3

I have no idea why my action is not being hit. This controller is under an "Area" called api. $.ajax({ url: defaults.url + (defaults.url.indexOf('?') > 0 ? '&' : '?') + 'r=' + ...
0
votes
1answer
191 views

MVC How to return view in ActionFilterAttribute like ActionResult?

Is it even possible to return a view from an ActionFilterAttribute? Right now i just have it throw an error and in the OnException in the base controller reroutes to an error page. Would liek to show ...
1
vote
1answer
4k views

ASP.NET MVC Global or BaseController ActionFilter to Execute Before OnAuthorization

In my application (ASP.NET MVC 3) I have a BaseController class that all my Controllers inherit and in that BaseController I have overridden the OnActionExecuting method to check to ensure a Session ...
0
votes
1answer
126 views

ASP.NET MVC 3: Can I pass a modelbound object to a FilterAttribute?

I have a controller method with a custom FilterAttribute on it... [ActivityHistory] public ActionResult Index(Vehicle vehicle, string componentName) { return PartialView("_Description"); } The ...
23
votes
2answers
5k views

Injecting dependencies into ASP.NET MVC 3 action filters. What's wrong with this approach?

Here's the setup. Say I have some action filter that needs an instance of a service: public interface IMyService { void DoSomething(); } public class MyService : IMyService { public void ...
0
votes
1answer
1k views

mvc role based permission using actionfilterattribute

So I'm setting up my permission for an mvc website. And I'm doing a role based permission, having actions in a controller would require different Roles depending on the purpose of the action. I know ...
0
votes
1answer
348 views

ActionMethodSelectorAttribute + AllowHtml

I have an ActionMethodSelectorAttribute which i have the following line in: var req = controllerContext.RequestContext.HttpContext.Request.Form.AllKeys.Any() ? ...
0
votes
1answer
871 views

MVC Get ActionFilterAttribute value in Base Controller OnActionExecuting

If i set an Attribute on an action in a controller that inherits BaseController, is it possible to get that value in some BaseController function? public class BaseController : Controller { ...
5
votes
6answers
2k views

Custom ASP.NET MVC ActionFilterAttribute - hooks never get called

Hi I`m trying to do something that seems kinda easy, and is documented that way but for some reason its not going that easy. Basiclly I wrote something like this: public class CacheControllAttribute ...
0
votes
1answer
665 views

ASP.net MVC Global Filtering

This is sort of a broad question, but one I am curious about. What are some examples of uses for MVC Global filters? I.E. public static void RegisterGlobalFilters(GlobalFilterCollection filters) ...
0
votes
1answer
271 views

ASP.NET MVC 3 FilterAttribute - setting a variable that will be accessible in the Controller

In a FilterAttribute I am making in MVC3, I want to set a variable that will be accessible inside my Controller. How can I do this? Is it possible? Thank you.
1
vote
1answer
992 views

ASP.NET MVC3 ActionFilterAttribute Priority/Selection - Bizarre?

I just noticed a strange behavior with ActionFilterAttribute priority in MVC3. It turns out that if both a Controller and an Action are decorated with the same ActionFilterAttribute with ...
0
votes
2answers
300 views

Enforce security check in ASP.NET MVC?

I am implementing a collaborative web gallery, and I have a few roles for each user: Admin DeleteImage DeleteOwnImage etc.. For any controller-action, we can apply [Authorize] tag to them plus ...
1
vote
2answers
612 views

Earlier ActionFilterAttribute execution in base controller - MVC2

I have the following setup. When an action is executed in GuestDetailsController, how can I have[LoadThemeInfo] run prior to [RequireCheckoutAvailability] without having to specify orders on the child ...
2
votes
1answer
305 views

Use a IRouteConstraint or ActionFilterAttribute when validating session data against route data

I've been implementing a RouteConstraint recently whos responsibility is to Match a custom route value against some model data that is in the session. What I've found is that the session is null for ...

1 2