Tagged Questions
The principalpermission tag has no wiki summary.
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 ...
3
votes
2answers
210 views
Why is System.Environment.MachineName value uppercased?
My machine name is lowercased (i see that in Advanced system settings dialog, Computer Name tab) but System.Environment.MachineName reports it uppercased. Why is that? This is a real problem for me ...
2
votes
2answers
795 views
fine-grained permissions; PrincipalPermission - roles seperate from permissions;
I've been using PrincipalPermission for a while in wcf services.
[PrincipalPermission(SecurityAction.Demand, Role = SecurityRoles.CanManageUsers)]
Our roles are prefixed with: Can* and is how we ...
2
votes
3answers
672 views
SecurityManager.IsGranted() behaviour
can anybody please explain the following c# behaviour? I have written a small console application just to learn about CAS, but I can not seem to understand why the following lines of code work like ...
1
vote
0answers
199 views
PrincipalPermission.Demand() failing once WCF Service was moved to SSL
My Silverlight/WCF application uses PrincipalPermission in each service method to ensure the user is Authenticated. This works just fine when I have everything configured to HTTP, but once I ...
1
vote
1answer
529 views
Converting Declaractive PrincipalPermission to Programmatic .Demand
I currently have two roles like this:
[PrincipalPermission(SecurityAction.Demand,
Role="Domain\Admin")]
[PrincipalPermission(SecurityAction.Demand,
Role="Domain\AnotherRole")]
The problem ...
1
vote
1answer
127 views
Silverlight4 page and PrincipalPermission
I am using VS2010 to learn about Silverlight4 Business Application with the MVVM design pattern.
Trying to figure out how to declaratively secure a SL4 view (either a Page or UserControl or ...
1
vote
0answers
127 views
Principal permission
I worte a method with PrincipalPermissionAttribute then I run this method but I get a security exception.
It happen cause I dont know who is the principal that running. I try to get the current ...
1
vote
1answer
326 views
Role Based Authorization in .NET with PrincipalPermission and SecurityAction.Assert
I have a class attributed with
[PrincipalPermission(SecurityAction.Demand, Authenticated = true)]
public class MyProtectedClass { }
This works as expected and callers are denied access when the ...
1
vote
0answers
552 views
Caller identity (Network Service account) obtained by WCF service is out of date
We have a WCF service using TCP binding, hosted in a Windows service. The WCF service is called by an ASP.NET web application.
When the WCF service is called, I would like to check whether the ...
1
vote
1answer
409 views
Active Directory and PrincipalPermission
This is more of a curiosity than a request for help, but I noticed that when using PrincipalPermission and verifying a user is part of a specific group in Active Directory it will not use the true ...
1
vote
1answer
1k views
WCF and PrincipalPermission
I have a number of services that will be running under the security context of NT Authority\System as a Windows service (the services are NetTCP-based). There are six groups stored in Active Directory ...
0
votes
1answer
43 views
Why does PrincipalPermission(Attribute) not respect authentication type?
IIdentity interface exposes AuthenticationType property which i would like to take into account because things are bit different if a user logs on with x509 or basic username/password auth, you know:
...
0
votes
2answers
131 views
elevation demand not working for method in winforms app
I have a winforms app that installs other apps in a loop. This works properly on an administrator account in Windows 7, but I have serious issues in a standard account - the app requires elevation in ...
0
votes
2answers
233 views
Error Handling in WCF Service
With the following service method example:-
[PrincipalPermission(SecurityAction.Demand, Role="BUILTIN\\Administrator")]
public string GetTest()
{
try
{
return "Hello";
}
catch (Exception ...
0
votes
1answer
194 views
System.Security.SecurityException - Get the role name
I've implemented a catch all security exceptions method in my global.asax like this...
protected void Application_Error(object sender, EventArgs e)
{
Exception err = Server.GetLastError();
if ...