Re: Logout method of custom login module never called

2011-06-07 Thread David Jencks
: http://apache-geronimo.328035.n3.nabble.com/Logout-method-of-custom-login-module-never-called-tp3019593p3033324.html Sent from the Users mailing list archive at Nabble.com.

Re: Logout method of custom login module never called

2011-06-07 Thread Adrie de Heer
idea when it will come available? (without trying to hurry you up ;) Adrie -- View this message in context: http://apache-geronimo.328035.n3.nabble.com/Logout-method-of-custom-login-module-never-called-tp3019593p3033651.html Sent from the Users mailing list archive at Nabble.com.

Re: Logout method of custom login module never called

2011-06-06 Thread Adrie de Heer
which unregisters the subject as described in the jira the leak disappears. Is this the way to go forward or are there other/better solutions? Regards, Adrie -- View this message in context: http://apache-geronimo.328035.n3.nabble.com/Logout-method-of-custom-login-module-never-called

Logout method of custom login module never called

2011-06-03 Thread Adrie de Heer
Hi all, I'm using a custom login module for user authentication. The login works fine but my logout method is never called. I've tried both basic and form authentication. Am I doing something wrong or is this as expected? I'm using version 2.2.1 (tried tomcat jetty). Kind regards, Adrie

Re: Custom Login Module HttpServletRequest access for webservice

2009-03-05 Thread Kaupo
. But I've never done that before, so when can I do it? JASPI sounds interesting but unfortunately I don't have time to learn it - the project deadline is approaching. Thanks for the fast reply David! -Kaupo -- View this message in context: http://www.nabble.com/Custom-Login-Module

Re: Custom Login Module HttpServletRequest access for webservice

2009-03-05 Thread Kevan Miller
On Mar 5, 2009, at 5:40 AM, Kaupo wrote: I'd love to file a jira enhancement request. But I've never done that before, so when can I do it? Thanks Kaupo. Geronimo's Jira page is here -- http://issues.apache.org/jira/browse/GERONIMO You'll need a Jira account to create Jira's. Do this here

Re: Custom Login Module HttpServletRequest access for webservice

2009-03-05 Thread Kaupo
this message in context: http://www.nabble.com/Custom-Login-Module-HttpServletRequest-access-for-webservice-tp22303812s134p22354239.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.

Re: Custom Login Module HttpServletRequest access for webservice

2009-03-03 Thread David Jencks
On Mar 2, 2009, at 11:39 PM, Kaupo wrote: Hi! I have made a custom login module where I need to retrieve some user data from the HttpServletRequest. The following piece of code work well: request = (HttpServletRequest) PolicyContext.getContext(javax.servlet.http.HttpServletRequest

Custom Login Module HttpServletRequest access for webservice

2009-03-02 Thread Kaupo
Hi! I have made a custom login module where I need to retrieve some user data from the HttpServletRequest. The following piece of code work well: request = (HttpServletRequest) PolicyContext.getContext(javax.servlet.http.HttpServletRequest); The problem is that it only works when I login from

Custom login module error

2007-02-13 Thread Kev D'Arcy
Hi, Any ideas why I'd be getting this error: java.lang.ClassNotFoundException: aib.dos.wasce.security.LDAPLoginModule in classloader console/realm-LdapRealm/1.0/car With a custom login module? It's deployed within the Geronimo repository. Many thanks, Kev

Re: Custom login module error

2007-02-13 Thread Kevan Miller
On Feb 13, 2007, at 7:15 AM, Kev D'Arcy wrote: Hi, Any ideas why I'd be getting this error: java.lang.ClassNotFoundException: aib.dos.wasce.security.LDAPLoginModule in classloader console/realm-LdapRealm/1.0/car With a custom login module? It's deployed within the Geronimo repository

Re: Custom login module error

2007-02-13 Thread Kev D'Arcy
On Feb 13, 2007, at 7:15 AM, Kev D'Arcy wrote: Hi, Any ideas why I'd be getting this error: java.lang.ClassNotFoundException: aib.dos.wasce.security.LDAPLoginModule in classloader console/realm-LdapRealm/1.0/car With a custom login module? It's deployed within the Geronimo repository

Custom Login Module,Custom Callback handler

2006-10-19 Thread sreepriya ramakrishnan
Hi all, I am trying to invoke my custom login module in a Servlet Filter. Logincontext lc = new logincontext(configname,mycallbackhandler). In the login module I try to case the callbackhandler to mycallbackhandler and it throws a class case exception. When I did some digging I found

Custom Login Module .LDAPLoginModule and Exception

2006-10-02 Thread sreepriya ramakrishnan
Hi all, I have configured the LDAPLoginModule provided by Geronimo and another custom login module in a stacked manner in Geronimo V1.0. I have my own callbackHandler class implemented and I try to invoke the configured modules in a Servlet Filter in the following manner: lc = new Logincontext

Re: Custom login module

2005-10-06 Thread Scott Anderson
On 10/5/05, Ivan S. Dubrov [EMAIL PROTECTED] wrote: Hello, My hack was a little cleaner. I was adding the jar containing my custom login modules as a dependancy to first j2ee-server-plan.xml but since the j2ee-security-plan.xml was established I have had to move the dependancy for my

Re: Custom login module

2005-10-06 Thread David Jencks
On Oct 5, 2005, at 11:25 PM, Scott Anderson wrote: On 10/5/05, Ivan S. Dubrov [EMAIL PROTECTED] wrote: Hello, My hack was a little cleaner. I was adding the jar containing my custom login modules as a dependancy to first j2ee-server-plan.xml but since the j2ee-security-plan.xml was

Custom login module

2005-10-05 Thread Ivan S. Dubrov
Hello, I have a problem with custom login module - the Geronimo does not find it. I have the following in the geronimo-application.xml (irrelevant parts are omitted): ?xml version=1.0 encoding=UTF-8? application xmlns=http://geronimo.apache.org/xml/ns/j2ee/application; configId=myapp

Re: Custom login module

2005-10-05 Thread Scott Anderson
If I add my login module classes into the geronimo-security-1.0-M5.jar (very dirty hack, of course :) ), it works. So I have some misunderstanding with the class loading, I think. My hack was a little cleaner. I was adding the jar containing my custom login modules as a dependancy to first

Re: Custom login module

2005-10-05 Thread Ivan S. Dubrov
Hello, My hack was a little cleaner. I was adding the jar containing my custom login modules as a dependancy to first j2ee-server-plan.xml but since the j2ee-security-plan.xml was established I have had to move the dependancy for my security jar up to the parent configuration of both the server