A realm is a collection of usernames and passwords that identify valid users of a web application, plus an enumeration of the list of roles associated with each valid user.

learn more… | top users | synonyms

10
votes
3answers
3k views

Two realms in same application with Spring Security?

We're building a web application that is available to both authenticated and anonymous users. If you decide not to register/login you only have a limited set of features. User authentication is done ...
9
votes
5answers
5k views

Java Web Application: Using a custom realm

I'm writing a java web application which need to perform login through a webservice. Of course, none of the realms supplied with the application server I'm using (glassfish v2) can do the trick. I ...
4
votes
1answer
129 views

How can i define a Loginmodule from Glassfish asadmin?

I'm currently implementing a Glassfish realm backed by a neo4j DB. For that, i've defined a Realm class and a LoginModule class. I can install the realm using the create-auth-realm asadmin command. ...
4
votes
1answer
182 views

Custom isUserInRole implementation with RDBMS

I'm developing a Java EE 6 applications using Glassfish 3.1.1 as my app server. I'm using declarative and programmatic security. I've defined several roles at my deployment descriptor, and defined all ...
3
votes
2answers
5k views

Implement a Tomcat Realm with LDAP authentication and JDBC authorization

I'm working in a legacy environment where an LDAP server is used only for authentication and contains no roles, and authorization is done against a database which contains the user-role mapping, but ...
3
votes
2answers
462 views

Tomcat 7 nesting CombinedRealm, LockoutRealm and DataSourceRealm

I'm trying to nest Realms as follows in Tomcat 7.0.32 (written here in pseudo-XML): <CombinedRealm> <LockoutRealm> <DataSourceRealm/> </LockoutRealm> ...
3
votes
2answers
2k views

How to log out user from web site using FORM authentication?

I am using FORM authentication, together with Realm. I would like to know how can I log out. The only solution so far is to close browser, but that's not acceptable from the usability standpoint. ...
3
votes
1answer
240 views

Debugging a custom tomcat realm

I am developping a custom realm for Tomcat 7 using maven and eclipse juno. It looks a lot like the solution described in Implement a Tomcat Realm with LDAP authentication and JDBC authorization , ...
3
votes
2answers
969 views

Java Application with Multiple JAAS Security Realms

I was wondering if it was possible to have a Java EE application with multiple JAAS security realms. I'm currently developing an application in which some users need to be authenticated with data ...
3
votes
1answer
2k views

Tomcat: Implementing java.security.Principal

I am trying to create a custom realm in Tomcat. My problem is that there is a SessionAttributeListener as part of the framework which checks to see if any object added to the session is serializable, ...
3
votes
0answers
64 views

Java EE duplicates session over the network

I've developed a Java EE Sprint Maps Application with realm. The problem is that when I logged in a computer, every computer on the network I am getting the same session as the first computer that ...
3
votes
1answer
118 views

Logging from Custom Tomcat Realm

This is probably a very dumb question, but I can't seem to find the answer to it. I have a custom Realm for Tomcat, utilized at the Context level. I would like to log failed and successful logins. ...
3
votes
2answers
584 views

using md5 and salt with j security check

Right now I am using j security check and md5 to authenticate my jsp pages. I would like to salt the password before I store it into the database. Due to restricted access at school, I do not have ...
2
votes
1answer
12k views

Accessing secure restful web services using jersey client

I have created web services based on Jersey (auto generated via Netbeans). I have also created a user names “testClient” with password “secret” and created User group “Users” and used file Realm ...
2
votes
1answer
2k views

How to unlock a tomcat user?

I am using Tomcat 7.0 and a user i defined at tomcat-users.xml is locked. I saw warnings at catalina.out that the user is locked. How can i unlock it without restarting tomcat? I searched a lot but ...
2
votes
1answer
2k views

Confusing about <security-role> in web.xml

I'm understand that <security-role><role-name>Admin</role-name></security-role> is for container map it with tomcat-users.xml (realm) but I confuse about if I didn't use ...
2
votes
2answers
1k views

How to setup Tomcat web.xml and context.xml for 2 different (user and admin) authentication

Here's my situation: I want stuff under mysite/customer/* to require form-based authentication before access (login via mysite/customer/login.jsp, with its own user_password table and role. ) BUT ...
2
votes
2answers
1k views

How do I secure REST resources so that only a single user of a role can access it?

I have succesfully created a REST web service with Jersey and secured it via java security annotations. It looks something like this GET /users/ // gives me all users GET /users/{id} // ...
2
votes
1answer
38 views

Java realm and secured request

I'm developing a game with separated and isolated universes (like ogame for those who know this game). One player (account) is associated with one universe but one player (physical) can create one ...
2
votes
2answers
2k views

Glassfish authentication : can the realm be an external database

I am completely new to login and authentication concepts. I am working on a Glassfish web application that should present general content to any visitor, and some extra content for registered users ...
2
votes
1answer
80 views

Tomcat REALM doesn't authenticate in some cases

I am using Tomcat 7 and Realm for authenticating using JDBC. I extended DataSourceRealm to use our own implementation. My problem is that in some cases it seems like Tomcat REALM doesn't call any ...
2
votes
0answers
104 views

Howto use JDBC realm in embedded Glassfish

I'm using embedded Glassfish (org.glassfish.main.extras:glassfish-embedded-all:3.1.2.2) and tried to add a JDBC realm. The application deploys fine but when trying to login (Basic auth. shows the ...
2
votes
0answers
159 views

tomcat kerberos authentication + ldap authorization

We use LDAP to authenticate and authorize users on a tomcat server, but now need to remove the passwords from LDAP and switch over to kerberos authentication. Now we would like to authenticate the ...
2
votes
1answer
318 views

Realm configuration for active directory

I want to authenticate a user who want access specific resource by Active Directory. I use JSF 2.1 and Glassfish 3.1.2. I try this, this, this but it dont work for me. User cant sign in. Always ...
2
votes
0answers
125 views

Is it possible to have different roles assigned to different web services in the same application?

ENVIRONMENT: JEE6, GlassFish 3.1, NetBeans 7 I have two roles, ADMIN and USER. I secured my Metro web service with HTTP Basic Authentication. However there are some webmethods that I want to be ...
2
votes
1answer
3k views

Getting Active Directory Realm with Glassfish 3.1

I have been trying to create an Active Directory LDAP Realm in Glassfish 3.1 all day and I finally figured it out. Here is how I did it. I created 3 files a login.xhtml <h:body> ...
2
votes
1answer
630 views

group memberships in (AD) ldap Realm

I use the JAAS Framework for the authentification and authorization process in a java ee enterprise application. I use GlassFish as the application server. My realm configuration looks like: ...
1
vote
2answers
566 views

unable to change tomcat-users.xml and server.xml while tomcat(7) runs **within** eclipse(juno)

I ran into a problem today and I was hoping someone could answer/explain for me. I was trying to add a new role and new user to tomcat-users.xml ,and add a realm to server.xml ,to test some basic ...
1
vote
2answers
95 views

Modal Apache htaccess?

Apache realm auth is great for quick and dirty site acl's. Can one do realm authentication with a modal window instead of the usual ugly native one? I know there are other solutions, like CAS, etc. ...
1
vote
3answers
2k views

JDBC Realm Login Page

i tried to create a login page using JDBC realm but did not works. My steps : Create database, user and group table Create connection pool and data source, custom realm. Add security ...
1
vote
1answer
193 views

How do I know which page was requested before login on a JSF 2 page

I'm developing a web application with GlassFish 3.1 and JSF 2.0 / EJB 3.1. Some of my pages are secured. The secured URL-Parts are defined in the web.xml as URL-patterns. These pages are secured ...
1
vote
1answer
788 views

Find out what the realm is for a Juniper Connect VPN session?

Heylo guys, Im currently VPN using a web interface through Juniper that asks for username and password. I want to programmatically connect but i have to use nclauncher.exe which requires me to enter ...
1
vote
2answers
657 views

Which JAR contains AppservPasswordLoginModule in GlassFish 3.1

I want to develop a custom realm for GlassFish 3.1 in NetBeans 7.0.1, and I want to import the JAR that contains the class com.sun.appserv.security.AppservPasswordLoginModule to the project classpath, ...
1
vote
1answer
895 views

What should I set REALM to, using LightOpenID, for Google url's to remain consistent, for storage in my database?

Recently, I noticed that when storing the resulting identity in my database, Google would sometimes return a different identity for the same user, resulting in two database entries for a single user. ...
1
vote
1answer
916 views

Tomcat 6 customized Realm

I'm trying to write my own Realm to authenticate my users. I have written a class extending org.apache.catalina.realm.RealmBase, compiled to a .jar file and put it in the /lib library. Then I added ...
1
vote
1answer
193 views

apache shiro: how to set the authenticationStrategy using spring applicationcontext?

I've been struggling with authenticationStrategy settings with shiro 1.2.1 in a spring based web application. I have 2 realms. One authenticates against database and one against ldap. both realms are ...
1
vote
1answer
267 views

Redirect after Realm authentication on Glassfish

I'm currently running a JPA/EJB/JSF application on Glassfish and using the security JDBC realm for authentication. The realm works pretty well, fulfilling the requirements, until the customer asked ...
1
vote
1answer
259 views

Apache Shiro: Exception-Handling with Multiple Realms

We are using two realms (one for hashed passwords, the other one for generated plaintext keys) - this is working as expected. With a single realm, we could throw a DisabledAccountException exception ...
1
vote
1answer
361 views

Glassfish JDBC + LDAP Realms

I'd like to authenticate users using both JDBC and LDAP connections. In the database I have usernames, roles, and a flag indicating if the user is allowed to log in. NAME | ROLE | ALLOWED user1 | r1 ...
1
vote
1answer
784 views

Tomcat 7.11 JDBCRealm and UserDatabaseRealm dont work together

I'm trying to set a container managerd security a realm for my web app (JSF 2.1 + hibernate). I have noticed that Tomcat 7 can only use one type of realm at a time. To use Tomcat in netbeans (7.0) i ...
1
vote
2answers
256 views

Custom Realm for ObjectDB, using ObjectDB with HTTP Basic authentication

I want to implement HTTP Basic Authentication for my web services, but I also want to use ObjectDB to store credentials. Is there any way to do this? I guess I'm in the need of a custom realm, and ...
1
vote
2answers
465 views

Detect a realm authentication failure reason in Tomcat

I wrote a custom Realm for Tomcat 7. I wrap it in the lockout Realm provided by the default installation of Tomcat. The lockout feature works fine, but in my web.xml, I have <error-page> ...
1
vote
2answers
5k views

Configuring a Context specific Tomcat Security Realm

I am trying to get a context specific security Realm in Tomcat 6.0, but when I start Tomcat I get the following error: 09-Dec-2010 16:12:40 org.apache.catalina.startup.ContextConfig ...
1
vote
1answer
693 views

config Realm on Tomcat 6, Oracle 11g exception

I need to config realm on tomcat 6 for oracle 11g to work for jBPM workflow. So I created a file: jbpm-console.xml under Catalina/localhost like this: <Context> <Realm ...
1
vote
2answers
2k views

Tomcat 6.0 manager authentication via JDBC realm

I wanted to configure Tomcat6.0 authentication via JDBC realm Configuration.** I checked following: -All my "users" and "roles" are stored in MySQL database. -MySQL JDBC drives are in tomcat\lib ...
1
vote
1answer
38 views

Worklight: multiple security realms

I want to know can we have multiple same name security tests defined in authenticationconfig.xml file? Will it Work fine, or cause problems? like this: <securityTests> ...
1
vote
0answers
106 views

error in Configure Tomcat 7 realm

Hi can anyone help me with it , I spend whole evening but couldnt make it work :( here is in my web.xml <security-constraint> <web-resource-collection> ...
1
vote
1answer
2k views

Svn error, authentication fails [closed]

Using ubuntu, just suddently I am getting the following error when i am trying to connect to my svn to do any operation,checkout,commit etc. : Authentication realm: <https:.....> Subversion ...
1
vote
0answers
68 views

Scope of jdbc realm glassfish 3.0.1

Please I need some clarifications regarding jdbc realm in glassfish (v3) . I am trying set up different login authentication for two application A and B located in the same domain. I have successfully ...
1
vote
0answers
2k views

How to configurate a servlet path in web.xml

I am stuck into a problem i cannot find a solution to solve it. I've wrote an multi-tier application in Java(build: maven, deployed:jboss 6/tomcat, db: oracle 10g) and now try to develope a ...

1 2 3