JAAS is the Java Authentication and Authorization Service found in the JRE (1.4+).
0
votes
1answer
10 views
JAAS DabaseServerLoginModule rolesQuery does not return user roles
I'm using JAAS with JBoss as 7. The login module used is DatabaseServerLoginModule. Here is my configuration:
<login-module code="Database" flag="required">
<module-option ...
0
votes
1answer
31 views
javax.security.auth.login.LoginException: No LoginModules configured for SomeLogin
Well I'm trying to create JAAS authentication for my Servlet (running on Tomcat 7 in Eclipse), but I'm getting this error.
He're's the complete stack trace:
'`
INFO: Starting Servlet Engine: Apache ...
1
vote
0answers
18 views
Difference between a ProtectionDomain and an AccessControlContext
Could someone explain what the difference is between a ProtectionDomain and an AccessControlContext?
I am reading JAAS in Action and from what I can see these two classes seem to be very similar. I ...
0
votes
2answers
37 views
How to auto login by a cookie with JSF/EJB/JBoss
I'm using JBoss 7.1.1, JSF2.0, EJB 3.1.
I'm trying to auto login a user when re-visiting. (Not a full login, but at least I give him his customized views - I would never let him/her invoke a ...
0
votes
0answers
42 views
Can not use kerberos ticket to create hadoop file with java code
Our hadoop cluster use kerberos,so we need use kinit first, then use command like "hadoop fs -ls /".
Now I use jaas and gssapi login and create file in cluster,but failed.here is my code:
import ...
0
votes
1answer
35 views
TomEE, JAAS, SQLLoginModule and 403
I have added the SQLLoginModule to my deployment (TomEE 1.5.1):
system property that points to the login.config
login.config configured to use SQLLogin realm
server.xml updated to use this realm
...
0
votes
0answers
44 views
JAAS isn't working in Websphere Application Server
I have defined my login module under Global Security->JAAS -> Application Login.
But how would my server and deployed application will know about it.
Plus When I tried to check Golobal ...
0
votes
1answer
49 views
JAAS: Make application use Tomcat authentication settings
Is it possible to make a web application which uses JAAS authenticate via tomcats default authentication method.
To illustrate: Tomcat uses the tomcat_users.xml for authentications. The web ...
3
votes
1answer
70 views
JBOSS 7 with two contexts. One with SSL Mutual Auth and the other just SSL
We are having a problem to configure our JBoss. We are tring to configure it to make it possible to use at the same time Mutual auth and to don't use it.
Like:
https://example.com/contextA/ (Requires ...
0
votes
1answer
26 views
JAAS configuration from Tomcat to Glassfish
I understood all three JAAS Elements:
JAAS Client
Login Module
JAAS Config file
But I am confused where/how to change tomcat Context to Glassfish context.
Current Tomcat Context :
<Context ...
0
votes
0answers
12 views
Migrating from JAAS configuration from Tomcat 6 to Webshpere Application Server 8.5
What are steps to migrate JAAS configuration from Tomcat 6 server to Websphere Application Server 8.5?
I tried googling it and have gone through IBM documentation. But could not find anything.
0
votes
0answers
12 views
Interacting with JAAS from hybrid application
I am researching on how can an hybrid mobile application interact with existing Java authentication authorization service developed for web application.Is this possible?Can anyone suggest any links?
...
0
votes
1answer
29 views
Set userProvider dynamically at runtime for JAAS logins to LDAP
I have a J2SE application that is setup correctly to handle user authentication with an LDAP server. However, the URL is hard-coded in the config file.
e.g. ...
0
votes
0answers
23 views
JAAS Tomcat: How to get Login Context?
I have multiple Login Modules defined in jaas config file and trying to access them via Tomcat Realms.
But How would I get hold of Login Module which is being decided dynamically via app context?
0
votes
0answers
14 views
Moving JAAS implementation from source code to Application Server
Legacy application I work for has JAAS implementation hardcoded in sourcecode and I am trying to move it to Application Server. I found the line code to be commented and know how to configure it on ...
2
votes
0answers
55 views
Encounter an error on security exception being thrown in JAAS login module
I have a JAAS project which consist of RolePrincipal.java, UserPrincipal.java, and JaasLoginModule.java in place as shown in thte bottom of this question. This project was run in Tomcat 6 and have the ...
0
votes
1answer
47 views
basic authentication does not work even for correct credentials
I am trying to configure Tomcat 7 jdbc realm configuration.
I have followed this tutorial completely ..
http://www.avajava.com/tutorials/lessons/how-do-i-use-a-jdbc-realm-with-tomcat-and-mysql.html
...
0
votes
0answers
65 views
Obtaining remote client IP in an AuthorizationModule on JBoss 7
Our application relies on an AuthorizationModule for filtering certain IP addresses in a remoting context. This module worked perfectly on JBoss 5.1.0.GA (with a known workaround), but failes on ...
0
votes
0answers
33 views
JdbcRealm, DatasourceRealm and JaasRealm
I'm working on a Jboss AS7 server, and I'm stuck with a security decision.
What are the differences (and advantages) of these security realm in Java EE6 : JdbcReal, DatasourceRealm and JaasRealm ?
I ...
0
votes
1answer
32 views
Passing values to sharedState parameter in LoginModule
The LoginModule interface has this method:
public void initialize(Subject subject, CallbackHandler callbackHandler,
Map<String, ?> sharedState, Map<String, ?> ...
1
vote
2answers
55 views
What is the default implementation of JAAS in Websphere?
I was wondering what is the default implementation of JAAS in Websphere ?
For example: In Websphere, when you create a JAAS credential for a DataSource, where is the credential stored ? I mean what ...
1
vote
1answer
56 views
how to call session bean method with a certain role when calling from an MDB?
My Session bean has several methods defined.
Some can be accessed by ADMIN role only, others can also be accessed by USER role.
@Stateless
@DenyAll
public class MyBean {
...
...
0
votes
1answer
155 views
Not been able to give role based permission in drools guvnor using jboss AS 7
I am in a BRMS technology project in financial sector. Using Drools Guvnor 5.5.0.Final with jboss-as-7.2.0.Alpha1-SNAPSHOT server. I configured the login page in guvnor using jaas successfully. Now I ...
1
vote
1answer
37 views
Using LDAP with HornetQ
HornetQs default SecurityManager (HornetQSecurityManagerImpl) will check users/roles that are stored in the hornetq-users.xml. I want use LDAP for authenticating users; I have two ways:
Using Jass, ...
0
votes
1answer
18 views
JAAS “Required” flag
In http://docs.oracle.com/javase/6/docs/api/javax/security/auth/login/Configuration.html
It says
1) Required - The LoginModule is required to succeed.
If it succeeds or fails, ...
1
vote
0answers
109 views
Jboss 5.1.0 EJB Security (unauthenticated principal via JNDI)
How do you secure remote EJBs from unauthenticated principal in JBoss-5.1.0.GA application server? After configuring my ejb security I can still access the remote EJBs with a JNDI lookup without ...
1
vote
1answer
59 views
Java JAAS authentication requires database port number
Hi im using the this link for the Java JAAS form based authentication,
implementation of JAAS login module validates the user entered user name and password with the database(postgresql)
in JAAS We ...
0
votes
1answer
42 views
JavaEE web.xml - intepreting role-name tags
I want ask (or maybe better word is confirm) how after put more than one role name into auth-constraint tag given roles are treated. If to access to the app you nedd only one role from given set ...
0
votes
1answer
38 views
annotation based security in tomcat webapp
I want to achieve webservice security something like this
(http://docs.oracle.com/cd/E24329_01/web.1211/e24983/secure.htm - example is for javaee)
But inside tomcat + jersey application. Is it ...
0
votes
0answers
34 views
Glassfish subject propagation from client application to server
I have a swing client application from which I want to call some ejbs. On client I authenticate like this:
System.setProperty("java.security.policy", "./src/main/java/all.policy");
...
0
votes
0answers
24 views
Create Custom JAAS module for SSL communication with Directory
I am using JAAS for authenticating a user on a directory server be it AD or OpenLDAP.
I am facing a problem with having the authentication done over SSL if the directory service supports it.
I am ...
0
votes
0answers
111 views
Vaadin Authentication and Auhorization
I'm new to Vaadin.
Before this I made a JSF Web Application.
I had a ManagedBean performing the login of the user. I used a security-realm to delegate the actual verification of the credentials.
How ...
0
votes
1answer
58 views
JAAS - malicious subject and principal creation
I'm a newbie to JAAS and I still can't get one thing: what if a malicious user creates the subject and principal manually ?
Shouldn't there be some validation of subject/principal in case the user ...
0
votes
1answer
108 views
Keep getting HTTP Status 403 after login to webapplication secured with glassfish security realm
Setup:
glassfish 3.1.1
JSF 2.1
jdbcRealm with postgreSQL
After typing valid user credentials to the login form I get logged in and redirected to the next page. But if I leave that page and go to ...
0
votes
0answers
107 views
JBoss AS 7.1 JAAS loses user role if a user object is updated with EntityManager
Using JAAS in Jboss AS 7.1 (picketbox) to authenticate members. It all works fine except that there is a very annoying reference problem:
the security realm in use, (jboss as 7.1 standalone.xml)
...
0
votes
0answers
58 views
Is Windows SSO possible with Jaas/Krb5LoginModule for Rich Client using Java 7
It appears that with Java 6 I was able to get the logged in users TGT to generate a Service Ticket; however, when I switch to Java 7 I can no longer get the TGT. Debug shows "Found no TGT's in LSA". ...
1
vote
0answers
111 views
weblogic jaas server side example
I need to implement JAAS authentication to lookup EJB beans in Weblogic from both client and server side.
For client this code works perfectly fine:
LoginContext loginContext = null;
loginContext = ...
2
votes
2answers
123 views
Credentials exception when running Filenet-based web app on Websphere Application Server
I have developed a REST service that retrieves data from the content engine storage. For simplicity I've created user account with read-only privileges and used it for CE authorization, using the ...
0
votes
1answer
59 views
Using multiple keytabs in Kerberos JGSS without using JAAS .conf file
I want to use multiple keytabs in multiple server threads. I don't want to use JAAS conf file so i implemented my own login configuration in LoginConfiguration class. The getGSSCredentials() function ...
0
votes
1answer
57 views
Spring template connect to OpenSSO/JAAS secure endpoint
I'm trying to access a REST service via a server-to-server GET request that is secured by OpenSSO/Spring Security and am unable to. It's like my Spring Rest Template client is not stateful to hold ...
0
votes
0answers
59 views
Perhaps bad configuration of FacesServlet
With this following web.xml the tag jsf are rendered but i have many trouble with templates, css and buttons
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" ...
2
votes
1answer
133 views
Why do I list security roles in web.xml when they're in jdbcRealm database?
I run JavaEE 6 web application on Glassfish 3. I use JAAS with jdbcRealm and default principal to role mapping. In my database I have table for mapping usernames to their roles:
_username_|_role_
...
0
votes
0answers
41 views
Camel-restlet component, LDAP and JAAS authentication
Does camel-restlet component support authentication and authorization using ldap and jaas?
i.e. I understand there is a restletRealm we can pass to the camel-restlet endpoint but as I see in the code ...
0
votes
1answer
276 views
java and jboss7 j_security_check Login Successfull but with Problems
I created Custom Database Server Login Module and i created a Form with j_security_check it works successfully but the problems are:
Sometime jboss return error code 408 : When log in successful it ...
-1
votes
1answer
76 views
Does JAAS authorization enable on the fly customization? [closed]
When developing enterprise applications, authorization governance usually requires a flexible way to manage users and roles (including runtime customization). As far as I understand, JAAS does not ...
10
votes
1answer
533 views
JAAS configuration and LDAP login module in JavaEE 6
I'm writing a question here because I haven't been able to find the solution myself for months. My situation: I have a client-server application written on java which uses Java2ee 6 and EJB3.0. The ...
0
votes
2answers
356 views
JSF 2.0 redirect to index.jsf after login
We have a JSF (2.0) based web application, running on JBoss 6.1. We are using the FORM based authentication with JAAS.
Some of the users adding links like this "admin/editUser.jsf" to their ...
1
vote
1answer
217 views
Java and Jboss7: j_security_check Custom Implementation
I have this case :
A login form uses DatabaseServerLoginModule - all authentication data are stored in the database in Seperated Tables i need to pass flag j_usertype [ from drop down list ] to ...
0
votes
1answer
49 views
How do I define a security realm in a JavaEE Stack in Cloudbees?
I'm trying to run a simple web application in a JavaEE stack in CloudBees. As part of this application, I define a security realm which is a DataSourceRealm
<login-config>
...
0
votes
1answer
54 views
Glassfish/JBoss different DB for the same application, depending on who is logged in?
I'm developing an Java EE 6 application that will run as a SaaS but each client will have a completely isolated database. Also, the security will be managed using the server (JBoss or Glassfish) JAAS. ...




