Fluent Security configuration for ASP.NET MVC

learn more… | top users | synonyms

0
votes
1answer
11 views

Authorize all controllers in a given namespace?

Is it possible to apply an AuthorizeAttribute to all controllers within a given namespace using FluentSecurity?
0
votes
0answers
22 views

Fluent Security and AOP with CastleDynamicProxy

This exact problem has been asked on GitHub but the provided workaround just doesnt seem to be optional with version 2. The problem is, that if security is configured properly, even when it is ...
-1
votes
1answer
54 views

using fluentsecurity in modular system mvc 4

I have an MVC application named app_ui in my solution as a startup project, and some other applications in solution as modules. Then in startup project I access to modules and their actions by ...
1
vote
1answer
61 views

FluentSecurity 2.0 support for action with parameters

In my .net mvc 4 app I am using the latest release of FluentSecurity (1.4) in order to secure my actions. Here is an example that illustrates my problem: Suppose I have a controller with 2 edit ...
1
vote
1answer
28 views

Testing a custom PolicyViolationHandler in FluentSecurity

I have written a custom policy in FluentSecurity (implement ISecurityPolicy) and a corresponding PolicyViolationHandler by implementing IPolicyViolationHandler. Everything is working perfectly with ...
0
votes
1answer
69 views

Extending role based security to allow roles for a specific entity

I've used FluentSecurity in another MVC application and its great, provides a slick implementation. I now have a requirement to offer application wide roles, plus also provide additional permission ...
1
vote
1answer
61 views

Execution order against authorization filter

Using Fluent Security, I have configured website access using DenyAnonymousAccess, DenyAuthenticationAccess and RequireRole. However, since HandleSecurityAttribute is not an authorization filter, all ...
1
vote
1answer
54 views

How do you use Fluent Security to Setup SSL Redirection in an ASP.net MVC application?

What is the best way to use Fluent Security to setup SSL Redirection on Controllers' Views within an mvc web app?
1
vote
2answers
65 views

how to pass data from fluent security custom policy to controller

I am using fluent security in my project, In every Index action i want to fetch the access permission information and pass over it to controller to enable or disable buttons according to the role of ...
2
votes
3answers
310 views

How to redirect to specific page in FluentSecurity?

Hi I'm using FluentSecurity to authenticate and verify users permissions in my MVC application. In the basic settings when a user wants to access to denied Action it throws an exception. I want to ...
1
vote
1answer
211 views

How can I configure Fluent Security policies for methods that take parameters? [duplicate]

Possible Duplicate: Fluent Security - configuring parameterized controller actions I'm trying out Fluent Security to enforce security policies in an ASP.NET MVC application, but I can't ...
2
votes
1answer
138 views

Catch exceptions from RequiredRole and other policies to redirect using Fluent Security

Using Fluent Security, I have configured website access using DenyAnonymousAccess, DenyAuthenticationAccess and RequireRole. SecurityConfigurator.Configure(configuration => { ...
4
votes
1answer
425 views

How Can I Use Domain Groups as Roles with Fluent Security in ASP.NET MVC 4?

In my ASP.NET MVC 4 application, I am using the intranet template to implement Windows authentication. I am also using Fluent Security. Out of the box I can use the annotations shown below to limit ...
4
votes
1answer
196 views

Fluent Security - configuring parameterized controller actions

I have done quite a bit of research and have tested both the 1.4 and 2.0 versions of the FluentSecurity libraries and I don't seem to be able to use the configuration pattern: ...
5
votes
2answers
175 views

C# Accessing dynamic property on interface

I am playing around with FluentSecurity library for asp.net mvc. One of the interfaces exposed by this library is ISecurityContext as shown below: public interface ISecurityContext { dynamic Data ...
0
votes
1answer
83 views

Installing Fluent Security Pre release nuget package

I've tried to install Fluent Security Pre release package using the below command. Install-Package FluentSecurity -Pre When I've tried the above command from VS 2010, getting the error below. PM> ...
1
vote
1answer
321 views

Check where violation occurs in fluent security when having multiple areas

I'm developing an application and I'm securing it using Fluent Security. I have 2 different areas within the web application, namely an Admin area and a Members area. I implemented my Policies ...
2
votes
2answers
205 views

fluent security unit testing

I have been writing some tests on my Fluent Security configuration off late. Though I can write tests verifying if a controller action method has a particular policy applied e.g. ...
2
votes
2answers
268 views

FluentSecurity with MVCSiteMapProvider

I was hoping to use this with MvcSiteMapProvider to hide / show menu items instead of doubling up and defining roles in my mvc.sitemap file. I have gone through the source for 2.0alpha1 but can't ...
4
votes
1answer
557 views

Does FluentSecurity replaces Asp.Net membership provider or it's supposed to complement/work together with it?

I'm working on an Asp.Net MVC4 site and I wanted to create a membership provided backed by Redis. Since I need the user privileges to be dynamic - user can create new roles in the admin dashboard - I ...
1
vote
3answers
578 views

Implementing FluentSecurity over Ninject (aka porting StructureMap to Ninject)

I'm a beginner on IoC and dependency injection. I'm reading about it, but I just can't get it. While I figure out how stuff works, I'm trying to implement some of these patterns on my project (and ...