Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
3k views

How do I implement custom Principal and Identity in ASP.NET MVC?

I want to store extra information in the authenticated user so that I can have it easily accessible (like User.Identity.Id, for example), instead of just the name, since I'm planning on having that ...
7
votes
1answer
2k views

Spring security accessing principal

When using spring security, specifically with @notation; what is the proper way to access the principal in a Controller? Lets say the following is my controller, but I would like to access the ...
5
votes
1answer
442 views

App Domain Level Impersonation

I am developing an application that needs to load plug-ins into separate child app domains. Only one plug-in is loaded into one child app domain. Each plug-in requires different Windows identity and ...
5
votes
2answers
958 views

How do I start a thread in a different security context?

How to start a thread in the security context of a different user? When a process starts a thread normally the security context is also passed but how to launch a thread in a different security ...
4
votes
1answer
929 views

Claims-based authentication for WCF RESTful services

I've been working through various samples to try and piece together a solution for SAML token-based authentication for ASP.Net web services and WCF RESTful web services... some of the samples I've ...
3
votes
1answer
308 views

ASP.NET / IIS 7 - Authenticate against an Active Directory using a Principal

My current application uses the PrincipalContext class to authenticate a default user (filled in in the Web.config dedicated section) against a LDAP (and more precisely an Active Directory): ...
3
votes
1answer
549 views

Authentication / PrincipalPermission not work

Hi i work in WCF and i write my Authentication Manager who based on IHttpModule and it work fine. One of methods in my Authentication class create GenericPrincipal object in Context.User. For example ...
2
votes
1answer
155 views

WCF Service throws error when validating Credentials against PrincipalContext?

I have a WCF service, which works if I use one login, but throws the following error if I try logging in with any other login. Strangely enough, if I change the password to the working login, the new ...
2
votes
1answer
188 views

Fundamental difference between Generic Principal and Forms Authentication in context of ASP.NET?

What exactly is the difference between Forms Authentication and Generic Principal? If I use Forms Authentication in ASP.NET, what advantage would I have by implementing the Generic Principal as well ...
2
votes
0answers
105 views

Get identity-level token for Windows user?

I want to create a WindowsIdentity for a given user. I don't need it for impersonation, just for group membership checks. I need it to work with and without a domain (none of that S4U Kerberos ...
2
votes
1answer
628 views

Inexplainable InvalidOperationException with GroupPrincipal and SAM PrincipalContext

I am trying to create a Principal like this: PrincipalContext pc = new PrincipalContext(ContextType.Machine); GroupPrincipal group = new GroupPrincipal(pc); group.Name = "Some Group Name"; ...
2
votes
3answers
3k views

How to set Thread.CurrentPrincipal for use throughout the application?

HEllo, In an ASP.net application I'm using Login control with custom membership provider that I wrote, and what I also want to do is to set Thread.CurrentPrincipal to my custom Principal object, ...
1
vote
3answers
56 views

Spring 3 MVC Controller integration test - inject Principal into method

As part of Spring 3 MVC it is possible to inject the currently logged in user (Principle) object into a controller method. E.g. @Controller public class MyController { ...
1
vote
1answer
74 views

VB.NET - Accessing My.MySettings.Default changes Thread.CurrentPrincipal?

It appears that when you access My.Settings.Default in VB.NET, your thread's CurrentPrincipal changes. Consider the following code. Dim name = "admin" Dim user = ...
1
vote
2answers
66 views

What “domain” should I specify in JNDI login to an Active Directory Server?

I'm wondering what "principal" I should specify to login in to an Active Directory server. Should the principal be a user inside the AD I try to log into? Or it can be a user in the domain I specify ...
1
vote
1answer
361 views

Custom principal objects vs Membership API in ASP.NET?

I'm trying to get a handle on all the various techniques of implementing custom authorization within a traditional ASP.NET application - it seems that the preferred approach is to use the Membership ...
1
vote
1answer
371 views

Problem using custom principal and identity with WCF services

We are using a custom principal and identity type (ProdigyPrincipal/ProdigyIdentity) because we need extra information within our programs and services. In the program we set the principal and ...
1
vote
1answer
159 views

What's the basic ideas of *continuous physic simulation* like box2d/bullet3d?

Traditional physic simulation (in game/graphics industry) was basically discrete. But engines nowadays such as box2d or bullet3d implement continuous physic simulation. I know basic principals of ...
1
vote
2answers
321 views

Retrieving the Subject executing a java.security.PrivilegedAction at runtime

I am trying to retrieve the Subject that is currently executing a Privileged Action under the JAAS framework, in order to be able to extract its principals. Basically, I need to verify at run-time ...
1
vote
1answer
318 views

Passing HTTP authenticated principal onto another worker thread

We have a web front end on our business layer server. Certain pages in our web application instantiate very long running tasks (could be up to 10+ minutes). The way that these requests are handled ...
1
vote
2answers
838 views

Custom principal in ASP.NET MVC

I want to be able to access custom properties for an authenticated user like UserId and FirstName without querying the database each time. I found this site through a post on Stack Overflow and I ...
1
vote
1answer
448 views

Role, Membership, Profiles, Principals, and Forms Authentication

I'm swimming in the relationships and hierarchies of a web application that I'm trying to secure with custom sql membership and role providers. I'm a little fuzzy on forms authentication, principals, ...
0
votes
0answers
25 views

Principal and claim set storage best practice

Once a user has authenticated in my WPF application what's the best way of keeping their identity around? There are many places in the product that can display anything that may be on the claimset ...
0
votes
1answer
35 views

Weblogic NegotiateIdentityAsserter and user principal name

My web application uses Kerberos authentication. I set NegotiateIdentityAsserter and LDAP Authentication Provider. Everything works fine if sAMAccountName is user for user lookup. Unfortunately in ...
0
votes
0answers
31 views

Spring Security ACL - SID comparison by different user attribute

I want to change SID comparison at Spring Security ACL by another user attribute not only username from UserDetails. Is there possiblity to change somehow PrincipalSid to take principal from different ...
0
votes
2answers
180 views

WCF service authorization manager setting the Thread.CurrentPrincipal

I have a custom ServiceAuthorizationManager where i override CheckAccess and validate a custom auth token that is part of the URL. After i validate, i set the Thread.CurrentPrincipal with a ...
0
votes
1answer
112 views

How to print principal using JSF 2.0 + Facelets?

with jsp I can easily print the logged in principal using: <%= request.getUserPrincipal() %> now I would like to do the same using JSF 2.0 + Facelets. How to do that? I have been trying for a ...
0
votes
2answers
94 views

How to get the principal after a successful SSL handshake using Mina?

I am using Mina with a SslFilter, configured with "client authentication needed". Once a connection is made and a handshake is done, how to get the certificate (or the principal) of the peer on the ...
0
votes
1answer
845 views

Request for principal permission failed when working with multiple assemblies

I have a simple application split into three assemblies. One is a client form that allows user to read a key from the registry. Second is an authorization form through which the user logs in. The ...
0
votes
2answers
350 views

how to clear user principals after logout?

The case is easy: user clicks logout, goes to LogoutFilter and: HttpServletRequest hreq = (HttpServletRequest) request; hreq.getSession(false).invalidate(); HttpServletResponse ...
0
votes
2answers
800 views

Get Custom Property Of User Principal

I have a custom user details object with first name part of it. Below username works, but I want something like the second to work. How can I access this custom property? ...
0
votes
1answer
405 views

Thread.CurrentPrincipal in .NET console application

Here is a trivial console application that i run in command prompt: using System; using System.Threading; namespace Test { internal class Runner { [STAThread] static void ...
0
votes
2answers
323 views

WCF Service - Custom Principal

In the constructor of my WCF service class I am setting the current principal to be that of the principal passed in the header of the message: Thread.CurrentPrincipal = ...
0
votes
2answers
162 views

Does a System.DirectoryServices.AccountManagement.Principal ever have a null GUID?

I have a situation where I need to store a globally unique identifier that points to an Active Directory user account. I'm leaning towards the Guid because it is easier to store than the Sid. ...
0
votes
1answer
267 views

how to show all the sample principal component plots in R?

I noticed something in R , say pc is the result of applying PCA to a data matrix and pc$x is my sample principal component matrix . when try plot(pc$x) , it will only plot the first principal ...
0
votes
1answer
530 views

No principal in request after Apache basic authentication (basic-auth) with mod_jk

[environment] Apache 2.2.13 connect to Tomcat 5.5 with mod_jk (ajp13). Apache requires basic-auth for "/" i.e. for all URLs it serves. [problem] Once the request arrives at my app in Tomcat (it's a ...
0
votes
1answer
1k views

How do I get the Current User identity for a VPN user in a Windows forms app?

We're currently developing a Windows Smartclient that needs to authenticate users using their AD group membership. We now have a requirement for some users to connect over VPN. Is there any way I can ...