Tagged Questions

7
votes
5answers
262 views

Why would I hard-code user permissions in my controller attributes?

I have seen example code that looks like this, which seems perfectly reasonable: [Authorize(Roles = "Admin, User")] public class SomeController : Controller But I have also seen several examples ...
4
votes
2answers
737 views

Flowing WCF Role-Based Security through to UI

I am looking for some best practices on how to handle the following scenario - flowing permissions from WCF service layer through to UI: I have WCF services with methods that have been decorated with ...
1
vote
0answers
69 views

Is it correct to use the ASP.NET Role-Based Security in a standalone WPF application?

I have a little experience to use the ASP.NET Role-Base in the WinForm apps. I know how should I use it in such applications. And now we want use it in a business WPF application. Is it OK? I know ...
1
vote
1answer
161 views

Manage User and Roles

In my WPF Desktop sample Book Store application I want to manage Users and Roles. With multiple Users I want to achieve below points 1) Application Should have multiple user 2) User has 3 categories ...
0
votes
1answer
103 views

How can we use the Role-Based security in a dynamic environment?

We always have problems to using role-based in large systems. In such softwares we want superusers to able to set their organization users permissions. We can create many atomic roles and create a ...
0
votes
1answer
100 views

How to visually separate security-trimmed action links in ASP.NET MVC

I am experimenting with security-trimmed action links in ASP.NET MVC, and am considering using the SecurityTrimmedActionLink helper method described here. What I would like to do is put a vertical ...