0
votes
1answer
18 views

CatalystX::SimpleLogin have multiple realms

I need to create an authentication system for two types of users, clients and staff. I would like to use two separate realms to authenticate them (via Catalyst::Plugin::Authentication), however I ...
0
votes
0answers
41 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
33 views

Passed token is for invalid realm - was 'null' but should have been 'default'

We are facing one issue while implementing login functionality,We are creating a token after succesfully accepting the credentials, and if the token is valid, then we are redirecting to the homepage. ...
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 ...
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 ...
0
votes
1answer
62 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 ...