Tagged Questions

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

7
votes
3answers
1k 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 ...
6
votes
4answers
3k 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 ...
3
votes
2answers
385 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
1k 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, ...
2
votes
0answers
72 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
347 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: ...
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 ...
1
vote
0answers
15 views

Per-user Tomcat management rights [closed]

I'm trying to configure Tomcat so that a separate login is required to deploy certain apps. Let's say I have a /someapp context, which I would like someuser to deploy remotely. However, someuser ...
1
vote
0answers
101 views

Cannot load group for JDBC realm user

My jdbcRealm has somehow gotten deleted by magic from GlassFish. Now when I try to add it back in, I get the following error. SEVERE: SEC1111: Cannot load group for JDBC realm user [admin]. WARNING: ...
1
vote
1answer
85 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
78 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
1answer
24 views

how to enable java file in realm to all users

i have a web service that i want to enable for use to all users (web service is written as java class). I use realm to configure my website security. How can i enable this resource in web.xml? thanks ...
1
vote
2answers
108 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
41 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
1answer
798 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> ...
1
vote
0answers
119 views

Refresh Glassfish realm to update user roles

I use the security annotations in GlassFish (@RolesAllowed, ...) in combination with a custom realm (based on AppservRealm). When the user logs in the realm returns the assigned user roles via ...
1
vote
1answer
350 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 ...
1
vote
0answers
349 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
1answer
5k 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 ...
1
vote
1answer
677 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
2answers
876 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 ...
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
2answers
4k 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 ...
1
vote
2answers
876 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. ...
0
votes
1answer
18 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 ...
0
votes
2answers
227 views

Login configuration in Vaadin/Spring application in JBoss AS 7

I am trying to configure authentication in my Vaadin/Spring application deployed in JBoss AS 7, but I cannot find any documentation on this. I've managed to configure the application so that only ...
0
votes
1answer
54 views

Tomcat Authentication - Using Realms

I am currently trying to create a custom realm based log on using tomcat. I have created a custom realm that implement's authenticate. Added that as a .jar to "C:\Program Files\Apache Software ...
0
votes
1answer
57 views

apache tomcat 7 combined Realm

Is it possible to use combined realm in order to authenticate users vs the Active directory and then get the roles for the user from SQL database? If yes please explain how and if no is please tell me ...
0
votes
0answers
43 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 ...
0
votes
0answers
67 views

Tomcat 7.0.33. Access to Tomcat has not been authorized

I want use JDBCRealm in my JSF project. I use Nebeans 7.0.1. I set same options in settings as I read here: http://tomcat.apache.org/tomcat-7.0-doc/realm-howto.html#JDBCRealm My server.xml file (you ...
0
votes
1answer
50 views

Want to configure shared tomcat realm with different datasources

I have two sets of web applications that all run on the same Tomcat 5.5 server. I have one common Realm defined in server.xml: <!-- Define the top level container in our container hierarchy ...
0
votes
2answers
82 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, ...
0
votes
1answer
218 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 ...
0
votes
1answer
102 views

Custom Tomcat Realm and a whole load of JARs in the Lib directory

So I am working on a project whereby we needed to create a custom Tomcat Realm implementation to read authentication credentials from a mongo backed datastore. This has been pretty painless, but the ...
0
votes
0answers
175 views

Support both FORM and BASIC Authentication: Spring Security

My goal is to implement both FORM & BASIC authentication for our webapp.....both support same "intercept-url" patterns...... I tried to Implement a custom BasicAuthenticationFilter as mentioned ...
0
votes
1answer
89 views

Kerbtray realm and kdc for java gss-api

I'm using kerbtray.exe on Win7. How do I know exactly what the realm and kdc is for a java gss-api login?
0
votes
1answer
669 views

Custom realm problem in GlassFish 3.1

I would like to use a custom realm with glassfish 3.1 I took the two file from this topic to try. Custom Glassfish Security Realm does not work (unable to find LoginModule) The CustomRealm.java ...
0
votes
1answer
530 views

JDBC Realm Form Authentication How To [closed]

Possible Duplicate: JDBC Realm Login Page Hello to all, i would like to create an application login feature which bundled with jdbc realm and with custom login form(Form based ...
0
votes
3answers
727 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 ...
0
votes
2answers
156 views

Sharing credentials between different Tomcat Webapps

I have two webapps that will both be sitting on the same domain/tomcat application server, just in different context paths. (e.g. abc.com/abc and abc.com/def ). One is an older struts 1.0 ...
0
votes
1answer
226 views

I have to add custom realm jar file to tomcat 7's lib folder. How will i do this on a shared hosting server

I have created custom realm jar file and have to add it to the tomcat server's lib folder for my custom realm to work. This works fine when i deploy my application on my local tomcat server. My ...
0
votes
1answer
259 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. ...
0
votes
1answer
32 views

generated id to be copied in anothre column as string upon creation

This is a JavaEE6 application using Hibernate and PostgreSQL. Users are created in the database with @GeneratedValue(strategy = GenerationType.AUTO) that generates Long ids. I am trying to use the ...
0
votes
1answer
138 views

How to specify “realm” parameter for dotnetopenauth lib

I try to do OAuth (version 1.0) request authorization on the server and using DotNetOpenAuth library for this. The server has some troubles with getting authorization parameters through the ...
0
votes
2answers
986 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 ...
0
votes
2answers
1k views

com.ibm.websphere.security.WSSecurityException: the realms do not match

I'm getting this exception when trying to access a JAX-WS webservice running on the same WAS 7.0 server as the client. Caused by: javax.xml.ws.WebServiceException: java.io.IOException: Unable to ...
0
votes
1answer
823 views

Custom realm/starting Tomcat 6.0 from Netbeans 6.8/first HTTP request

I'm using NetBeans 6.8 and Tomcat 6.0.xx. I've created a custom realm and updated the NetBeans project build.xml to deploy the realm to Tomcat. When I debug the project, NetBeans starts the Tomcat ...
0
votes
1answer
342 views

Tomcat 6 Realm Config with Windows AD

We have Tomcat 6 connecting to a Win2k3 Server running AD. The realm is configured as such <Realm className="org.apache.catalina.realm.JNDIRealm" debug="99" referrals="follow" ...
0
votes
1answer
543 views

redirect the user once logged in to the requested page

Hi I have a form realm authentication with which i am securing a directory "secureUser" well my question is: - How i can redirect the user once logged in to the requested page the details: - now i ...
0
votes
1answer
1k views

Howto configure a JDBC realm for container managed security with tomcat?

I want to configure tomcat / my web application to use a JDBC realm for container managed security. I specified the realm inside tomcat's server.xml file like this: <Realm ...

1 2