Re: JNDIRealm and 4.1.10 with iPlanet

2002-09-23 Thread Jonathan Eric Miller
Did you protect the resource that you're trying to access with a security-constraint in your web.xml? Jon - Original Message - From: Douglas L Stewart [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, September 23, 2002 11:31 AM Subject: JNDIRealm and 4.1.10 with iPlanet I'm

RE: JNDIRealm and 4.1.10 with iPlanet

2002-09-23 Thread Stephan Schwab
Sorry to jump in on this discussion. But I think people with LDAP experience are having a look on it. Realm className=org.apache.catalina.realm.JNDIRealm debug=999 connectionName=cn=Directory Manager connectionPassword=mypassword

Re: JNDIRealm in tomcat

2002-09-12 Thread John Holman
The patch is included in tomcat 4.1.10 John. Vincent Stoessel wrote: Vincent Stoessel wrote: I was thinking about trying to create a JNDIRealm inside of Tomcat 4.0.4 (java 1.4se) , I've already written a cool little bean to that allows me to autheticate against our ldap/nds server, but I

JNDIRealm in tomcat

2002-09-11 Thread Vincent Stoessel
I was thinking about trying to create a JNDIRealm inside of Tomcat 4.0.4 (java 1.4se) , I've already written a cool little bean to that allows me to autheticate against our ldap/nds server, but I see that tomcat authetication is role based, are roles something that would have to be added

Re: JNDIRealm in tomcat

2002-09-11 Thread Vincent Stoessel
Vincent Stoessel wrote: I was thinking about trying to create a JNDIRealm inside of Tomcat 4.0.4 (java 1.4se) , I've already written a cool little bean to that allows me to autheticate against our ldap/nds server, but I see that tomcat authetication is role based, are roles something

JNDIRealm and upper and lower case username

2002-09-09 Thread Rune Hamnvik
Hello We are using JNDIRealm together with OpenLDAP to implement authentication/authorization on Tomcat 4.0.4. But, we have one problem. JNDIRealm seems to ignore case in the username. A user with username rune can log in with both rune and Rune, but we use the username of the logged in user

JNDIRealm causing this: RE: Application running on Tomcat 4.1.3 stops resonding when inst alled with the Manager app

2002-08-14 Thread Collins, Jim
Hi again, I am 99% sure that it is the JNDIRealm code that is causing my application to stop responding for approximately 8 minutes at regular intervals. I will try and look at the source to see if I can locate the problem. If anyone else has had similar problems using JNDIRealm I would like

JNDIRealm LDAP Bind Authentication

2002-07-25 Thread Andrew Storms
I am experimenting with the additions John Holman committed to CVS for JNDIRealm.java that provides authentication via an LDAP bind. I'm curious to know if anyone has successfully configured LDAP bind to work with Novell's edirectory. thanks -_A -- To unsubscribe, e-mail: mailto:[EMAIL

Re: JNDIRealm config

2002-07-24 Thread John Holman
Tim Funk wrote: To use JNDIRealm with Netscape Directory server you need the 4.1.X series of tomcat and you need to bind as the user. So do not provide connectionName and connection password. Actually it's userPassword that should not be provided if you want JNDIRealm to bind

Re: JNDIRealm config

2002-07-23 Thread Tim Funk
To use JNDIRealm with Netscape Directory server you need the 4.1.X series of tomcat and you need to bind as the user. So do not provide connectionName and connection password. In the 4.0.X series the passwords are compared in an incompatible manner with respect to Netscape Dir server

JNDIRealm config

2002-07-22 Thread - -
hi This looks long but it's actually straightforward. I can't get the JNDIRealm config to work Netscape Directory Server 3.1. I suspect the conf. of the JNDIRealm elment is wrong but don't know why. I have a LDIF file exported from Netscape Directory Server 3.1 which define(loosely

JNDIRealm without roles???

2002-06-18 Thread Christian Schmitz
Hello, I want to use JNDIRealm wothout Rolesearch. In my LDAP-Directory no roles are set and I didn't set any roles in my web.xml. The Catalina log shows that the Realm authenticates Username and Password correct, although Access denied! I don't know why. This are the Entries in the log-file

RE: JNDIRealm without roles???

2002-06-18 Thread Josh Fenlason
Schmitz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 11:46 AM To: '[EMAIL PROTECTED]' Subject: JNDIRealm without roles??? Hello, I want to use JNDIRealm wothout Rolesearch. In my LDAP-Directory no roles are set and I didn't set any roles in my web.xml. The Catalina log shows that the Realm

RE: JNDIRealm authentication

2002-06-13 Thread Ryan
on Tomcat's site, http://jakarta.apache.org/tomcat/tomcat-4.1-doc/realm-howto.html#JNDIRealm, and tried to follow the example. My site loads fine, but I never get an authentication prompt when I enter my site. If anyone could sees anything wrong with my Realm/ or has any ideas of where

RE: JNDIRealm authentication

2002-06-13 Thread Josh Fenlason
Where does the value of role-name come from? Thanks for all your help. , Josh. -Original Message- From: Jonathan Eric Miller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 12, 2002 2:21 PM To: Tomcat Users List Subject: Re: JNDIRealm authentication Josh, You also need to put

JNDIRealm authentication

2002-06-12 Thread Josh Fenlason
I'm trying to do LDAP authentication with Tomcat 4.1.3. I've read through the how to docs on Tomcat's site, http://jakarta.apache.org/tomcat/tomcat-4.1-doc/realm-howto.html#JNDIRealm, and tried to follow the example. My site loads fine, but I never get an authentication prompt when I enter my

Re: JNDIRealm authentication

2002-06-12 Thread Jonathan Eric Miller
/auth-constraint /security-constraint login-config auth-methodBASIC/auth-method realm-namemyrealm/realm-name /login-config Jon - Original Message - From: Josh Fenlason [EMAIL PROTECTED] To: Tomcat [EMAIL PROTECTED] Sent: Wednesday, June 12, 2002 1:18 PM Subject: JNDIRealm authentication

Re: JNDIRealm authentication

2002-06-12 Thread Jonathan Eric Miller
if you're using Apache HTTP Server on the front end. Jon - Original Message - From: Jonathan Eric Miller [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, June 12, 2002 2:20 PM Subject: Re: JNDIRealm authentication Josh, You also need to put something similar

RE: JNDIRealm authentication

2002-06-12 Thread Josh Fenlason
4.1.3. I've read through the how to docs on Tomcat's site, http://jakarta.apache.org/tomcat/tomcat-4.1-doc/realm-howto.html#JNDIRealm, and tried to follow the example. My site loads fine, but I never get an authentication prompt when I enter my site. If anyone could sees anything wrong

RE: JNDIRealm authentication

2002-06-12 Thread Josh Fenlason
Thanks for the pointer. It's prompting me for authentication now. My Realm isn't right though. using the Realm element below I get the following exception. If anyone has any ideas of what I'm doing wrong, I would appreciate your advice. Thanks. , Josh. Realm

Re: JNDIRealm authentication

2002-06-12 Thread Jonathan Eric Miller
: Josh Fenlason [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, June 12, 2002 4:10 PM Subject: RE: JNDIRealm authentication Thanks for the pointer. It's prompting me for authentication now. My Realm isn't right though. using the Realm element below I get the following

Re: JNDIRealm with bind as user functionality

2002-03-19 Thread Jonathan Eric Miller
] To: Tomcat Users List [EMAIL PROTECTED]; Jonathan Eric Miller [EMAIL PROTECTED] Sent: Friday, March 15, 2002 5:14 PM Subject: Re: JNDIRealm with bind as user functionality On Fri, 15 Mar 2002, Jonathan Eric Miller wrote: Date: Fri, 15 Mar 2002 15:36:09 -0600 From: Jonathan Eric Miller [EMAIL

Re: JNDIRealm with bind as user functionality

2002-03-19 Thread Craig R. McClanahan
On Tue, 19 Mar 2002, Jonathan Eric Miller wrote: Date: Tue, 19 Mar 2002 12:40:55 -0600 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], Jonathan Eric Miller [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: Re: JNDIRealm

JNDIRealm with bind as user functionality

2002-03-15 Thread Jonathan Eric Miller
Does anyone know if JNDIRealm is going to be fixed up anytime soon so that the bind as user functionality is in there? I know someone had a patch for this. I'm wondering if that patch is going to be integrated into the main distribution. Jon -- To unsubscribe: mailto:[EMAIL PROTECTED

Re: JNDIRealm with bind as user functionality

2002-03-15 Thread Craig R. McClanahan
On Fri, 15 Mar 2002, Jonathan Eric Miller wrote: Date: Fri, 15 Mar 2002 15:36:09 -0600 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], Jonathan Eric Miller [EMAIL PROTECTED] To: Tomcat User List [EMAIL PROTECTED] Subject: JNDIRealm

Re: Re: Using JNDIRealm with password digesting and Netscape Directory Structure

2002-02-22 Thread Jonathan Eric Miller
listed below. Jon - Original Message - From: jay n gaba [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, February 18, 2002 2:34 AM Subject: Re: Re: Using JNDIRealm with password digesting and Netscape Directory Structure hi Has the bind style authentication

Re: Re: Using JNDIRealm with password digesting and Netscape Directory Structure

2002-02-18 Thread jay n gaba
PROTECTED] Sent: Friday, February 15, 2002 12:47 PM Subject: Using JNDIRealm with password digesting and Netscape Directory Structure Hi Has anyone solved the following problem regarding the digest password please give me some hint; thanks regards jay Hi, I'm

Using JNDIRealm with password digesting and Netscape Directory Structure

2002-02-15 Thread jay n gaba
Hi Has anyone solved the following problem regarding the digest password please give me some hint; thanks regards jay Hi, I'm trying to use tomcat's JNDIRealm with OpenLDAP. I've converted my passwords to digest format in the LDAP directory instead of plain text. Apparently, tomcat

iPlanet 5.0 Directory with JNDIRealm

2002-02-05 Thread Lloyd H. Meinholz
Has anyone successfully used iPlanet Directory Server 5.0 with JNDIRealm? If so, could you please give me some pointer on the ldap structure you used for JNDIRealm args? Thanks, Lloyd -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles

Re: Using JNDIRealm with password digesting and openldap

2002-02-05 Thread Craig R. McClanahan
On Mon, 4 Feb 2002 [EMAIL PROTECTED] wrote: Date: Mon, 4 Feb 2002 16:59:21 +0100 From: [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Using JNDIRealm with password digesting and openldap

Using JNDIRealm with password digesting and openldap

2002-02-04 Thread dirk . dussart
. ** Hi, I'm trying to use tomcat's JNDIRealm with OpenLDAP. I've converted my passwords to digest format in the LDAP directory instead of plain text. Apparently, tomcat only excepts only hex formatted password where openLDAP

Re: Using JNDIRealm with password digesting and openldap

2002-02-04 Thread John Holman
Dirk This isn''t possible with the current JNDIRealm in Tomcat 4, though you could probably specify the appropriate digest algorithm and hack the Tomcat code to disregard the {crypt} prefix returned from OpenLDAP. A much cleaner solution is to have the JNDIRealm to authenticate by binding

Re: JNDIRealm

2002-02-01 Thread John Holman
Fredrik At 15:06 29/01/02, you wrote: John Holman wrote: JNDIRealm works by retrieving the password from the directory server and comparing it explicitly with the value given by the user. Unfortunately AFAIK this mode of operation will not work with eDirectory. Reading the Realm

Re: JNDIRealm

2002-02-01 Thread Fredrik Westermarck
On Sat, 2 Feb 2002, John Holman wrote: Have the proposal been approved by the Tomcat developers, and are there any people working on this issue? Similar proposals are in the draft functional specification for the JNDI realm, and I submitted a patch to the tomcat-dev list earlier today that

Re: JNDIRealm

2002-01-29 Thread John Holman
JNDIRealm works by retrieving the password from the directory server and comparing it explicitly with the value given by the user. Unfortunately AFAIK this mode of operation will not work with eDirectory. There have been proposals (e.g. from me) to enhance JNDIRealm to allow

Re: JNDIRealm

2002-01-29 Thread Fredrik Westermarck
John Holman wrote: JNDIRealm works by retrieving the password from the directory server and comparing it explicitly with the value given by the user. Unfortunately AFAIK this mode of operation will not work with eDirectory. Reading the Realm HOWTO again made me realize that... Why would

JNDIRealm

2002-01-28 Thread Fredrik Westermarck
we are using Novell NDS (eDriectory) to store our users and have several NDS servers, we would like to have Tomcat to authenticate a user against one or more of the NDS servers. Is this possible? As far as I can see the JNDIRealm can only handle a single server to authenticate users against

JNDIRealm and Interbase - SOLVED !!!!

2001-12-21 Thread Diego Novati
Hi all, thanks for your help but after 8 hours of hard work I solved the problem. The problem is on an Exception in the JDBCRealm.authenticate method: the method catch SQLException but InterBase InterClient (and also Firebird SQL InterClient) throws a NullPointerException exception. Now, after

Tomcat 4 JNDIRealm Connecting to a LDAP Directory on Domino

2001-12-20 Thread DPiper
this be integrated into a JNDIRealm? If not, can anybody suggest an alternative that will allow us to take advantage of the realm facility (e.g. JDBCRealms)? Merry Christmas. Regards - Damien. -- To unsubscribe: mailto:[EMAIL PROTECTED] For additional commands: mailto:[EMAIL PROTECTED] Troubles

RE: JNDIRealm and Interbase - step 3

2001-12-19 Thread Michael Weissenbacher
[mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 11:47 PM To: Tomcat Users List Subject: Re: JNDIRealm and Interbase - step 3 Hi falks ! I solved the problem of step 2 copying interclient.jar in $CATALINA\common\lib and now I'm able to start Tomcat again. Now ther's the last problem

JNDIRealm and Interbase

2001-12-18 Thread Diego Novati
Hi, I need to use Interbase 6.0 OpenEdition with JNDIRealm. Using InterClient 1.6 Tomcat start but throws an Exception during the Authentication; using InterClient 2.0 I'm not able to start Tomcat. Is there anyone who is able to use Interbase ? Tomcat 4.0.1 Interbase 6.0 InterClient 1.6

RE: JNDIRealm and Interbase

2001-12-18 Thread Michael Weissenbacher
the memory leak. and it's possible to simply use / instead of \\ for the connection url in winnt. michael -Original Message- From: Guido Medina [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 10:13 PM To: 'Tomcat Users List' Subject: RE: JNDIRealm and Interbase Yes, it is a Java

Re: JNDIRealm and Interbase - step 2

2001-12-18 Thread Diego Novati
PROTECTED] Sent: Tuesday, December 18, 2001 10:30 PM Subject: RE: JNDIRealm and Interbase beware of interclient 2.0, it has some serious memory leak. i advice you to you firebird 1.0.0 rc1 instead of interbase6 open source, it has fixed many bugs of the original borland open source version. look

Re: JNDIRealm and Interbase - step 3

2001-12-18 Thread Diego Novati
] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, December 18, 2001 11:19 PM Subject: Re: JNDIRealm and Interbase - step 2 Hi, thanks for your tips. I downloded and installed Firebird InterClient 2.01 and corrected '\' with '/'. The problem is that nothing has changed Realm className

problems configuring JNDIRealm

2001-12-08 Thread Dmitry Beransky
Hi, I'm trying to configure use the JNDIRealm for authentication with Tomcat 4.0. I've added the JNDI realm to the local host server of the Calalina engine in server.xml file, as per the HOW-TO: Engine name=Catalina defaultHost=localhost debug=0 Host name=localhost debug=0

Re: problems configuring JNDIRealm

2001-12-08 Thread Craig R. McClanahan
There will not be any LDAP activity until you actually *submit* the login screen. That's when JNDIRealm is called to check the submitted username and password. The logic that decides you need to be authenticated, and then displays the login page, is in the Authenticator, not the Realm. Craig

Re: problems configuring JNDIRealm

2001-12-08 Thread Dmitry Beransky
On Sat, 8 Dec 2001, Craig R. McClanahan wrote: There will not be any LDAP activity until you actually *submit* the login screen. That's what I meant. I'm sorry, I should've been more explicit. I do submit the credentials and get another 401 back. Meanwhile, there is no activity on

JNDIRealm working, but, I have a few problems

2001-09-06 Thread Jonathan Eric Miller
First off, I want to thank Craig for writing up those JNDIRealm instructions. Those worked great. That's exactly the information that I was looking for. I have JNDIRealm working using both clear-text and digest passwords. However, there are a few problems that need to be resolved before I

Re: JNDIRealm working, but, I have a few problems

2001-09-06 Thread Craig R. McClanahan
On Thu, 6 Sep 2001, Jonathan Eric Miller wrote: Date: Thu, 6 Sep 2001 15:42:52 -0500 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Tomcat User List [EMAIL PROTECTED] Subject: JNDIRealm working, but, I have a few problems First off, I want to thank Craig

Re: JNDIRealm working, but, I have a few problems

2001-09-06 Thread Jonathan Eric Miller
- Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: Tomcat User List [EMAIL PROTECTED] Sent: Thursday, September 06, 2001 4:45 PM Subject: Re: JNDIRealm working, but, I have a few problems On Thu, 6 Sep 2001, Jonathan Eric Miller wrote: Date: Thu, 6 Sep 2001 15

JNDIRealm docs to be released soon?

2001-09-05 Thread Jonathan Eric Miller
Craig, A week or so ago, you mentioned that you are in the process of re-writing the docs on how to configure Realms. I'm wondering if you've had a chance to do that yet? When you do, please let me know, as I'm interested in trying to get JNDIRealm to work. Thanks, Jon

Re: JNDIRealm docs to be released soon?

2001-09-05 Thread Craig R. McClanahan
On Wed, 5 Sep 2001, Jonathan Eric Miller wrote: Date: Wed, 5 Sep 2001 15:49:43 -0500 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: Tomcat User List [EMAIL PROTECTED] Subject: JNDIRealm docs to be released soon? Craig, A week or so ago, you mentioned

Re: JNDIRealm questions

2001-08-23 Thread Jonathan Eric Miller
for JNDIRealm that would go in server.xml? If there were a JNDIRealm.howto, like the JDBCRealm.howto, that would be great. I'm guessing that you guys just haven't had a chance to do that yet. I'd being willing to write one up similar to the JDBC one once I get it figured out. A sample entry

Re: JNDIRealm questions

2001-08-23 Thread Craig R. McClanahan
On Thu, 23 Aug 2001, Jonathan Eric Miller wrote: Date: Thu, 23 Aug 2001 15:08:12 -0500 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: JNDIRealm questions I did a search of the Tomcat Developer List archive and found

Re: JNDIRealm questions

2001-08-23 Thread Jonathan Eric Miller
Thanks, can you confirm that binding as the user rather as system is supported? Jon - Original Message - From: Craig R. McClanahan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 23, 2001 3:21 PM Subject: Re: JNDIRealm questions On Thu, 23 Aug 2001, Jonathan Eric

Re: JNDIRealm questions

2001-08-23 Thread Craig R. McClanahan
On Thu, 23 Aug 2001, Jonathan Eric Miller wrote: Date: Thu, 23 Aug 2001 15:35:09 -0500 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: JNDIRealm questions Thanks, can you confirm that binding as the user rather as system

Re: JNDIRealm questions

2001-08-23 Thread Jonathan Eric Miller
: JNDIRealm questions On Thu, 23 Aug 2001, Jonathan Eric Miller wrote: Date: Thu, 23 Aug 2001 15:35:09 -0500 From: Jonathan Eric Miller [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: JNDIRealm questions Thanks, can you confirm that binding

Anyone using JNDIRealm?

2001-08-20 Thread Jonathan Eric Miller
Anyone out there using JNDIRealm? Jon

JNDIRealm questions

2001-08-16 Thread Jonathan Eric Miller
I'm currently looking at trying to use JNDIRealm for authentication and I've come up with a number of questions. I'm wondering if anyone knows the answers to any of the following questions. 1. Does anyone have it working that can provide an example entry of what should go in server.xml and also

FollowUp : Trying to extend JNDIRealm

2001-06-04 Thread Bragg, Casey
] == -Original Message- From: Bragg, Casey [mailto:[EMAIL PROTECTED]] Sent: Friday, June 01, 2001 5:18 PM To: '[EMAIL PROTECTED]' Subject: Trying to extend JNDIRealm Hello : I'm trying to extend JNDIRealm in tomcat4 to implement my own digest method for SHA1

Trying to extend JNDIRealm

2001-06-01 Thread Bragg, Casey
Hello : I'm trying to extend JNDIRealm in tomcat4 to implement my own digest method for SHA1. When I use org.apache.catalina.realm.JNDIRealm, Tomcat starts up fine. When I use my extension of JNDIRealm, I get the error listed below. To test, I made a duplicate

JndiRealm for Tomcat 4.0 and 3.2x alpha2 is available

2001-03-31 Thread Roytman, Alex
Title: JndiRealm for Tomcat 4.0 and 3.2x alpha2 is available JndiRealm for Tomcat 3.2 and Tomcat 4.0 readme: http://www.peacetech.com/java/files/apache/tomcat/jndi-auth.html JndiRealm for Tomcat 3.2 and Tomcat 4 Alpha 2 download: http://www.peacetech.com/java/files/apache/tomcat

Re: [CONTRIBUTION] JndiRealm for Tomcat. LDAP Authentication via JNDIis Available

2001-03-28 Thread Martin Smith
This is great news! I'll definitely check it out. mfs "Roytman, Alex" wrote: JndiRealm for Tomcat Please download ALPHA version of JndiRealm (compiled and source code) from http://peacetech.com/java/files/apache/tomcat/jndi-auth.html JndiRealm authenticates and Author

<    1   2