0
votes
0answers
38 views

Glassfish realm login redirects to wrong page

Here is the form in index.jsp from where the page is called: <form action="log_in" method="POST"> <table> <tr> <td> ...
0
votes
0answers
19 views

How I can create new user from Java class to GlassFish?

I'm creating a basic web application where user can register and then login. Obviously there is registration, login and login error page. I'm using GlassFish server for authentication. I would like ...
0
votes
1answer
62 views

Java security annotations ignored

I'm building a Maven Web Application user authentication. I created a new JDBC Realm in Glassfish and setup my domain classes with JPA. I can login with some created users and can check if they have a ...
1
vote
0answers
102 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 ...
0
votes
1answer
63 views

GlassFish v3.1 preventing several users login with same credentials

I am daveloping a JSF application that uses the GlassFish Security Realms for authentication. Everything works fine, but I am facing one problem though. Several users may login with the same ...
0
votes
0answers
40 views

Using custom realm with Glassfish V3

I'm just wondering if we can use more than 2 parameters (username + password) to authenticate users via realm in Glassfish V3 ? I have to introduce another parameter to choose database to process ...
0
votes
0answers
61 views

Custom realm in Glassfish

How can I implement new realm in Glassfish V3 when I have to authenticate user with username, password AND a string ? Thank you Olivier
0
votes
0answers
105 views

get request parameter with custom realm

I want to develop a custom realm for Glassfish V3 which is basically an extending of jdbcRealm. This realm should access many databases so it's necessary to get in addition to username and password ...
2
votes
1answer
314 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 ...
4
votes
1answer
126 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. ...
0
votes
1answer
362 views

Glassfish create more than one http session in realm authentication

I have a question about realm authentication, where glassfish create more than one http session. Here's an example Web.xml: <security-constraint> <web-resource-collection> ...
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 ...
0
votes
1answer
1k views

Glassfish won't start, how to reset glassfish instance?

I made a change in my glassfish jdbc resource pool via the admin console, my last change was a realm configuration where I renamed the user table field from "tablename" to "db"."tablename" as an ...
0
votes
1answer
218 views

Glassfish security realm for each application

I have deployed two applications onto the glassfish server, each of which uses its own security realm (file, jdbc). The problem is that the glassfish allows only one default realm to be set which ...
1
vote
1answer
358 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
0answers
197 views

Glassfish 3.1 login realm shouldn't prompt for credentials for a specific URL

I have a web application set to prompt for a user name and password at every point of entry. Everything requires basic authentication except for one URL called showStatus which is designed to show the ...
4
votes
1answer
181 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 ...
1
vote
0answers
485 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: ...
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 ...
1
vote
2answers
254 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
649 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
0answers
264 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 ...
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 ...