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

0
votes
1answer
251 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 ...
2
votes
1answer
626 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
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
689 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 ...
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 ...
3
votes
2answers
960 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 ...
0
votes
2answers
2k 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 ...
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 ...
0
votes
1answer
1k 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
544 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" ...
1
vote
1answer
915 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 ...
0
votes
1answer
762 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
2k 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 ...
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 ...
0
votes
1answer
356 views

Legacy application with JDBC and JNDI REALM authentication

My application currently relies on JDBC realm authentication. Recent needs have forced us to think about having LDAP authentication as well. We are thinking about using Active Directory for both ...
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 ...
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 ...
0
votes
2answers
1k views

How to check if FORM Realm authentication failed?

I use FORM Authentication. <login-config> <auth-method>FORM</auth-method> <form-login-config> <form-login-page>/loginPage.jsp</form-login-page> ...
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. ...
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 ...
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, ...
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 ...
0
votes
1answer
1k views

Tomcat: setup realm for authentication to use Windows users

I'd like to setup Tomcat on Windows and have authentication in my web application be done against the Windows users (or a subset of those users). I read that if you have users setup on Active ...

1 2 3