0
votes
2answers
55 views
Using JaaS with Jersey on Grizzly
I'm trying to find a simple, flexible way to add JaaS authentication to REST. I found a post that I think leads me in the right direction (See StevenC's answer). It sounds like t …
0
votes
1answer
41 views
JAAS - isUserInRole returns false for all roles in Tomcat
Here is the issue,
The JAAS realm connects to the database fine, the user name and password match, the session is authenticated. HOWEVER, none of the roles seem to be getting int …
2
votes
1answer
176 views
EJB Authentication and Authorization
Is there any way to extend the authentication operation which connects a client application to an EJB, using standard JAAS/container-based security? I'm looking for a way to use mo …
1
vote
2answers
81 views
JAAS with LDAP password policy
Hello all,
A user is accessing a restricted web application with JAAS (on Glassfish 2.1). LDAPRealm is used, and authentication is successfully performed from LDAP. A password pol …
0
votes
1answer
38 views
Is it possible to integrate Kerberos authentication into Jetty 6?
We currently have an application that runs an embedded jetty 6.1.14 server to which we need to add authentication via Kerberos. I'm new to Kerberos, which makes the task about 100 …
2
votes
2answers
165 views
Java and Kerberos authentication krb5.conf versus System.setProperty
Hello,
Please help me on a kerberos+Java problem. I have a simple Java program to authenticate to a Windows Active Directory using Kerberos. The following java code works fine wit …
0
votes
1answer
95 views
Reload Kerberos config in JAVA without restarting JVM
Hello,
The following code is for authenticating to a windows AD server using Java+Kerberos and it works fine-
public class KerberosAuthenticator {
public static void main(Strin …
0
votes
1answer
133 views
How to get LDAP search to use Kerberos ticket to avoid cleartext password.
I have a Tomcat configuration that uses Kerberos 5 to authenticate the user against AD server and then uses LDAP to obtain roles for authorization against a security-constraint.
s …
0
votes
1answer
46 views
Any Way to Read JAAS Configuration File from Memory
We use JAAS in a heavily loaded web server. The configuration file is loaded from a file,
System.setProperty("java.security.auth.login.config", "/config/jaas.config");
During …
0
votes
1answer
163 views
JAAS and JBOSS 5 problem with principal
I am working with a piece of code implementing JAAS LoginModule and in the commit method I set the principal with user UUID:
subject.getPrincipals().add(new SimplePrincipal(userU …
11
votes
8answers
421 views
Is there a reason why software developers aren’t externalizing authorization?
The value proposition of externalizing identity is starting to increase where many sites now accept OpenID, CardSpace or federated identity. However, many developers haven't yet ta …
0
votes
2answers
259 views
JAAS tomcat login module possible method to pass ip address
I've been looking into a way of passing the client ip as well as the userid and password from a JAAS login page to the JAAS login module implementation in my web code. JAAS only a …
2
votes
3answers
696 views
JSF authentication and authorization
Hi Experts,
What is the best way to go about implementing authentication and authorization for a JSF web application? Preferrably I'd still want to use container-based security, a …
0
votes
2answers
260 views
Error reading configuration file for JAAS Authentication Provider in Spring
Really ripping my hair out on this one. I have a JAAS Authentication Provider configured for my Spring webapp. I've created a bean definition for it as follows:
<beans:bean …
0
votes
1answer
560 views
SecurityException when accessing (ejb2-) session bean via local interface in JBoss 5
I have the following problem with an EJB 2 SessionBean when deploying in JBoss 5:
The SessionBean (called LVSKeepAliveDispatcher) requires a specific user role (called "LVSUser"), …
