Tagged Questions
JDBCRealm is implementation of realm (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) that works with JDBC supported databases.
4
votes
1answer
2k views
Glassfish Security - jdbcRealm: How to configure login with SHA-256 digest
I use jdbcRealm for security in my glassfish v3.0.1 b22. It is set up so that it use the USER table inside my database for authentication by following this blog: ...
4
votes
4answers
3k views
Login not triggered for restricted page in glassfish jdbcrealm authentication
I'm very new to EJB security and GlassFish authentication, authorization mechanism. I have a jdbc realm and configured sun-web.xml and web.xml to map the roles and restrict access to a page.
However, ...
3
votes
1answer
92 views
Is there existing support in tomcat for a JDBCRealm that takes in a salt?
We are currently using tomcat 5.5 and would like to add a salt to our JDBCRealm authentication. I was wondering if there was any existing classes or do we need to extend JDBCRealm and write our own ...
2
votes
1answer
49 views
Why is Realm setting required in Server.xml and not web.xml
I am working on a Java application for a while. I primarily work on .NET Platform. Although I feel lot of concepts are common between these two platforms but there are few areas where I am finding ...
2
votes
2answers
125 views
GlassFish 3 custom Realm password-column
I configured my glassfish custom realm with this properties:
Jaas: jdbcRealm
JNDI: jdbc/myDatasource
User Table: usuario
user name column: nombre
...
2
votes
1answer
411 views
LoginException: Login failed: Security Exception
I am attempting to setup container managed security with GlassFish v3.1.1 Build 12 and JSF 2.1. I keep getting the following exception for some reason and I am unable to login.
WARNING: WEB9102: Web ...
2
votes
1answer
61 views
How to add “Disable User” admin-feature in JEE application?
I have a JEE application that uses JDBCReal as JAAS Context for authentication on Glassfish 3.1. And below is the authentication code in a JSF2.0 managedbean -
FacesContext context = ...
2
votes
1answer
631 views
Programmatic Java EE 6 login: how to catch the LoginException?
Hey guys I have implemented a login using a backing bean and request.login() function. It works fine but if the login fails it throws a nasty error. It's fine because I have caught a differnt error ...
2
votes
1answer
415 views
Table design when using authorization with jdbcrealm in Glassfish v3
When using jdbcrealm in Glassfish v3 how strictly must I follow the recommendations regarding tables? Currently I have the following setup:
CREATE TABLE roles (
id INTEGER PRIMARY KEY NOT NULL ...
1
vote
1answer
24 views
How to prepare digested passwords for Tomcat JDBCRealm?
In example here http://tomcat.apache.org/tomcat-7.0-doc/realm-howto.html#JDBCRealm the type of user_pass column is varchar(15), while java.security.MessageDigest class takes and returns byte[]. Which ...
1
vote
0answers
41 views
Glassfish JDBC Security Realm with JPA Annotations
I have a fairly simple servlet application running under Glassfish 3.1.1 with a Derby 10.5.3.0 database. I have created a security realm using JPA annotations and am able to login successfully. My ...
1
vote
0answers
131 views
Tomcat 7 container managed security and SSL dont work together + jsf 2.1
I'm using JDBCRealm for Tomcat 7 user auth and SSL for https but I can not figure out how to combine them. My goal is to make all the page secure by SSL and possible to view only by a certain role. ...
1
vote
0answers
102 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
1answer
87 views
Automatic JDBC Realm configuration
I want to know if it's possible to create JDBC Realm configuration in Glassfish 3.1 without admin console, like creation of a Data Source with the glassfish-resources.xml.
When developers download my ...
1
vote
1answer
190 views
Authentication without authorization on Tomcat 7
I have an annoying error which I can't solve for quite a while. I recently was introduced to container-based security and try to implement it. I have configure the realm as following:
<Realm ...
1
vote
2answers
65 views
jdbcDigestAuthentication only works when providing the hash
I started a project setting up basic authentication. I now want to switch to Digest Authentication. The problem is that the authentication is validated only if I provide the hash of the actual ...
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
1answer
163 views
“User Expired Password” in JDBCRealm
How to use "User Expired Password" in JDBCRealm ?
Is it able to do this ?
1
vote
2answers
347 views
question about GlassFish/Tomcat security realms
I have GlassFish set up to use "JDBCRealm". The configuration looks like this and it works fine:
<JDBCRealm userTable="users" userNameCol="user_name"
userCredCol="user_pass" ...
1
vote
0answers
525 views
Can't get logout to work in Glassfish 3.1
I have tried every way imaginable. Disabled SSO in Glassfish. Put session.invalidate() in a jsp page and redirected. Did a request.invalidate in a jsf backing bean. What should I do? Thanks.
...
1
vote
1answer
149 views
Is there a bug in org.apache.catalina.realm.JDBCRealm?
http://www.docjar.com/html/api/org/apache/catalina/realm/JDBCRealm.java.html
To use this JDBCRealm we need two tables, user and user_role.
user table - user_id, user_name, user_password
user_role ...
0
votes
1answer
15 views
Configuring jdbcRealm in context.xml
<Context antiJARLocking="true" path="/NCellLive">
<Resource
name="jdbc/Gis_WebApp"
auth="Container"
type="javax.sql.DataSource"
username="uname"
password="pword"
...
0
votes
0answers
40 views
Create a simple user data base application with REST in java
Hello every one I am new to REST and java ee in general. I want to develop an application that offers some web services through REST. To better describe my problem I will try to give a quick example:
...
0
votes
1answer
59 views
Using bcrypt in a Glassfish 3.0 security realm
I'm currently in the process of changing the password handling in a web application from unsalted MD5 to bcrypt. It's a standard JSF application, running on Glassfish 3.0.1.
Using jBCrypt made ...
0
votes
1answer
241 views
Setting up a JDBC realm using Apache Shiro for a Spring Roo project
I have a Spring-Roo project set up using Eclipse link for my JPA persistence layer and i have created (User Roles, Users ) Table to manage my security. I was wondering if anyone has set up a realm ...
0
votes
1answer
247 views
Glassfish thinks jdbcRealm is actually fileRealm
I configured a new jdbcRealm in Glassfish 3.1.1 and turned on FINEST logging and I get the following when I try to login with a username and password. It complains that the realm my web app is mapped ...
0
votes
0answers
62 views
Clustering jsf 2.0 application on Glassfish Server 3.1 Open Source edition
Is it possible to cluster jsf 2.x web application which uses JDBCRealm for authentication/authorization using Glassfish Server 3.1 Open Source edition?
Also, I am wondering if it is possible to use ...
0
votes
1answer
111 views
Tomcat JDBCRealm using Oracle database over SSL (PROTOCOL=TCPS)
I'm trying to implement JDBCRealm in tomcat (as described in http://tomcat.apache.org/tomcat-4.1-doc/realm-howto.html#Configuring%20a%20Realm) to check credential agains Oracle Database. The thing is ...
0
votes
1answer
226 views
Unable to setup basic authentication with jdbc realm and Glassfish
I'm fighting with a Glassfish v3 and a very simple JAX-RS service (taken athttp://www.vogella.de/articles/REST/article.html
What I want to achieve is setup basic http authentication for all the ...
0
votes
1answer
76 views
icon in address bar isn't showen with jdbcrealm in tomcat
i am trying to do a website with icon in address bar. it works in regular website. But i'm trying to use realm in tomcat (to protected my resources), the icon is in public role without any ...
0
votes
0answers
158 views
Shiro Spring JDBCRealm Authentication and Authorization
Idea
I need to develop a web application using Spring MVC with Shiro as Security Framework.
Requirements
The usernames, passwords, roles etc to be stored in a database. Database Schema:
...
0
votes
0answers
430 views
Glassfish 3.1.1 JDBC Realm - LoginException
I created jdbcRealm in Glassfish 3.1.1:
<auth-realm name="db-realm" classname="com.sun.enterprise.security.auth.realm.jdbc.JDBCRealm">
<property name="user-name-column" ...
0
votes
1answer
103 views
How can I provide security in a web-application by jdbcRealm when I have few user tables
I have a problem with security in Java EE.
I have an application that supposed to be a kind of e-shop. I have three entities:
User class that is not mapped into database, and two inherited classes - ...
0
votes
0answers
154 views
Not able to set up jdbc realms with tomcat in eclipse
I have been trying all day to set up a jdbc realm for my web application that runs on tomcat and I am at my wits end.
In this configuration, When I try to access a secure element even with valid ...
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
73 views
Does jdbcRealm use cache? (Glassfish server)
Does com.sun.enterprise.security.auth.realm.jdbc.JDBCRealm use caching?
Let me describe my situation.
When I use file realm on my application, everything works Ok, but when I try to use remote DB I ...
0
votes
1answer
96 views
How do I get the curernt username of someone logged-in using JDBCRealm in Tomcat 6
I'm running Tomcat 6 and have implemented JDBCRealm to authenticate my users. I've got everything setup and authentication is working just fine.
My question is: how do I programmatically get the ...
0
votes
1answer
76 views
Implementing container based security in tomcat using sql server 2005
I have been trying to implement container based security in tomcat 6.0 using sql server 2005. It worked fine using tomcat-user.xml file, but when i change the realm to sql server it throws an error. I ...
0
votes
2answers
1k views
Glassfish JDBCRealm Login Exception
I have a JDBCRealm setup in glasfish 3.1 with oracle11. My web app authentication works fine, but now I'd like to be able to react if someone fails to login 3 times in a row. Looking at my server log ...
0
votes
1answer
241 views
Can I port Glassfish jdbcRealm to JBoss?
My application is running on Glassfish 3.1 using jdbcRealm is its authentication and authorization. I want to port this app to JBoss 6. Can I create a jdbcRealm inside JBoss 6 like in Glassfish3 that ...
0
votes
1answer
554 views
HTTP Status 404 after deploying a web application with a custom realm to Tomcat 6
I develop a web application for Tomcat 6, and I'm face to face with a problem I don't know how to resolve. Let's consider the following small scenario. Imagine that it's required to authenticate users ...
0
votes
1answer
196 views
Table naming convention for configuring a jdbcRealm in GlassFish
I am trying to configure a jdbcRealm in GlassFishV3 using existing tables that have a naming convention other than "users" and "groups"; the realm does not appear to work unless the tables are named ...
0
votes
1answer
695 views
JDBCRealm digest for MySQL PASSWORD() function
For an internal Tomcat/Java/Struts application, we're converting custom-written authentication code to use JDBCRealm. The database is MySQL 5.0, and the passwords are stored as PASSWORD()-encrypted ...