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.
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 ...
3
votes
1answer
117 views
Logging from Custom Tomcat Realm
This is probably a very dumb question, but I can't seem to find the answer to it. I have a custom Realm for Tomcat, utilized at the Context level. I would like to log failed and successful logins.
...
2
votes
1answer
69 views
Tomcat REALM doesn't authenticate in some cases
I am using Tomcat 7 and Realm for authenticating using JDBC. I extended DataSourceRealm to use our own implementation. My problem is that in some cases it seems like Tomcat REALM doesn't call any ...
2
votes
1answer
312 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 ...
2
votes
1answer
3k 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
1answer
229 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 ...
1
vote
1answer
110 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
2k 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
30 views
Adding a max-retry feature to Java EE authentication
For my app I use a datasource realm for authentication.
I would like to know if there is an easy way to add some features to j_security_check, like max retries or an idle time between 2 login ...
0
votes
1answer
251 views
Need help setting up multiple Realms in Tomcat
I'm trying to set up two Realms in tomcat and it isn't letting me for some reason. I'd like to use the standard UserDatabaseRealm (conf/tomcat-users.xml) for doing admin things (like deploying ...
0
votes
1answer
101 views
How to restrict users from directly accessing login.jsp?
I'm using the realm feature of tomcat and users not authenticated will be redirected to login.jsp. However if a user directly signs in using that page, he will be given a "HTTP Status 400 - Invalid ...
0
votes
1answer
97 views
How to preserve principal info in Tomcat (i.e. setPrincipal?)
I'm trying to build a second way for user login alongside the tomcat realm feature. That means an unauthenticated user can either:
1. signing in by evoking realm
2. providing a valid token and getting ...
0
votes
1answer
57 views
JSPWiki/Tomcat — several JNDIReamls per webapp
I am running a JSPWiki with a JNDIRealm for Authentication against an Active Directory.
Now I have to think about the possibility to add another JNDIRealm to give access to users from another domain ...
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 ...
0
votes
1answer
366 views
How to configure internal LDAP realm within the WebLogic for BPM app
I am new to Oracle BPM 11g. I am trying to deploy one hellow world application (using :- http://st-curriculum.oracle.com/obe/fmw/obpm/11g/r1/firstProcess/firstprocess_obpm11g.htm) in my local WL ...
0
votes
1answer
387 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
1answer
435 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 ...
3
votes
0answers
64 views
Java EE duplicates session over the network
I've developed a Java EE Sprint Maps Application with realm. The problem is that when I logged in a computer, every computer on the network I am getting the same session as the first computer that ...
2
votes
0answers
150 views
tomcat kerberos authentication + ldap authorization
We use LDAP to authenticate and authorize users on a tomcat server, but now need to remove the passwords from LDAP and switch over to kerberos authentication.
Now we would like to authenticate the ...
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
0answers
101 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 ...
1
vote
0answers
106 views
error in Configure Tomcat 7 realm
Hi can anyone help me with it , I spend whole evening but couldnt make it work :(
here is in my 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 ...
1
vote
0answers
2k views
How to configurate a servlet path in web.xml
I am stuck into a problem i cannot find a solution to solve it. I've wrote an multi-tier application in Java(build: maven, deployed:jboss 6/tomcat, db: oracle 10g) and now try to develope a ...
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
0answers
127 views
Tomcat - Assign roles based on client ip address in my custom realm
I am trying to create a custom realm based on certificate authentication. Basically I want to allow clients to connect if they present a trusted certificate. This is no problem and there are plenty of ...
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: ...
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 ...
0
votes
0answers
5 views
JNDI Directory Realm
I am working with Active Directory for my web application and I am able to authenticate using my current Realm configuration.
My current Realm is:
<Realm ...
0
votes
0answers
53 views
Worklight: Challenge-handler not working as expected
I used sample challenge handler that comes with Form Based Authentication module. I modified it as per my requirements. In my App, I have one Landing (home) page , where i have link to a login page. ...
0
votes
0answers
19 views
Cannot see WebService Role in WebLogic Console
I am trying to automate the following steps i do through WLS Console :
a. In the Weblogic console's Home page, click on Deployments link form left, find "gateway-management-service"
b. Expand, ...
0
votes
0answers
37 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
15 views
weblogic AuthenticationFilter is not beint invoked
I've tried to implement a Weblogic Servlet Authentication Filter as it is described here. But it turns out that the Filter is not invoked by requests pointing to an deployed web application. I ...
0
votes
0answers
18 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
0answers
19 views
Tomcat 7 webapp failing all username and passwords
I am unable to login to my webapp with any username and password even though I know the passwords are correct. This started happening on our deployment server after upgrading versions of tomcat and ...
0
votes
0answers
122 views
filter redirect to requested page with security-constraint
that's my first question and i hope i don't violate the rules.
Okay, following situation (similar to some other questions):
my authentication landscape consists of:
a ViewScoped CDI Login-Bean ...
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
171 views
Shrio login authentication not calling custom AuthorizingRealm
I have create a simple Apache Shiro authentication mechanism, however it is not working. The Subject is not using myAuthorizingRealm extension, and is just returning an AuthenticationException. Below ...
0
votes
0answers
110 views
Programmatically access JBoss Security realm
I have defined a realm in standalone.xml which is:
<security-domain name="adbRealm" cache-type="default">
<authentication>
<login-module ...
0
votes
0answers
75 views
JSF : limit the number of attempts to login
For authentication, I use this Form-Based Authentication example with JDBCRealm on Tomcat 7. It works.
Now, I would like to do this :
if the login fails, return to the login.xhtml page to propose ...
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.
...
0
votes
0answers
263 views
Issue in Federation in OpenAM with specific realms
I am stuck while setting up federation using OpenAM.
I have setup the following:
• IDP: www.idpexample.com:9080/openam_10.0.0 (Identity store is OpenDJ Instance 1), realm = idpexample
• SP: ...
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 ...
0
votes
0answers
59 views
Tomcat Realm get access to existing servlet
I want to implement custom realm which can invoke authorization method form servlet class. That servlet is deployed to server with existing application.
I guess that i can send http request from that ...
0
votes
0answers
97 views
How to configure callbackhandler for custom realm in Glassfish?
I configured new custom realm for Glassfish v3 and deployed it. No errors founded on logs where Glassfish start.
Now I want to test my realm with simple dynamic web project but I don't remember how ...
0
votes
0answers
161 views
Tomcat 7.0 configuration to support multi-tenancy with realm security
I'm trying to archive the following:
A Tomcat 7.0 webapp with different login screens per tenant. I want to deploy the WAR only once for all tenants. I came so far:
Multi-tenant GWT web-app
...
0
votes
0answers
35 views
Java A2A ClassCast Exception in Tomcat Realm
I'm getting the exception as described here: http://www.jspwiki.org/wiki/A2AClassCastException
SequenceXML seqResponse = (SequenceXML) jaxBUtil.load("com.sequencer", in)
Essentially, somehow my ...
0
votes
0answers
42 views
What is the way Tomcat Realm works to authenticate users of webapps
Can you please explain me the way, how Tomcat Realm works ? How it gets user details like uName , PW and how it checks it from DB. Because there are so many references available. Those confuses me.
0
votes
0answers
233 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 ...
