Re: Apache::TicketAccess

2003-03-01 Thread Ask Bjoern Hansen
On Thu, 20 Feb 2003, Nick Tonkin wrote: Is it the cookie doesn't get sent back thru the reverse proxy? As Perrin said, you need to see what is actually happening. Dumping the headers is a great way to start. Right at the top of your handler do Or you can use Apache::DumpHeaders.

Apache::TicketAccess

2003-02-20 Thread Scott Alexander
#AuthName Oppilaitosjärjestelmä #AuthType Basic #PerlAuthenHandler Apache::AuthAny #require valid-user #Limit GET POST PUT DELETE #require valid-user #/Limit # NEW PerlAccessHandler Apache::TicketAccess

Re: Apache::TicketAccess

2003-02-20 Thread Perrin Harkins
Scott Alexander wrote: I'm trying to use the example from the Eagle book on page 309 - 314 using the TicketAccess, TicketMaster, TicketTool handlers. In TicketMaster in sub go_to_uri it sets the a cookie with the $ticket. I can print $ticket to error log to see what it contains. But for some

Re: Apache::TicketAccess

2003-02-20 Thread Scott Alexander
Apache::AuthAny #require valid-user #Limit GET POST PUT DELETE #require valid-user #/Limit # NEW PerlAccessHandler Apache::TicketAccess PerlSetVar TicketDomain david1 PerlSetVar TicketSecret /key.txt PerlSetVar

Re: Apache::TicketAccess

2003-02-20 Thread Nick Tonkin
On Thu, 20 Feb 2003, Scott Alexander wrote: On Thu, 20 Feb 2003, Scott Alexander wrote: If I set my browser to david:8080/login.pl then everything works okay, Cookie gets set, and my session is current until I logout. So the setup is something to do with mod_proxy on the proxy server. Is

Apache::TicketAccess

2002-05-31 Thread Arnold van Kampen
Hi Where did it go? Arnold

Re: Apache::TicketAccess

2002-05-31 Thread Per Einar Ellefsen
At 21:50 31.05.2002, Arnold van Kampen wrote: Hi Where did it go? The modules written for the Eagle book haven't been released to CPAN. They are available online. See http://modperl.com:9000/book/source/apachemod-code-1.02/lib/Apache/ -- Per Einar Ellefsen [EMAIL PROTECTED]

Re: Apache::TicketAccess

2002-05-31 Thread Jon Robison
You might want to consider Apache::AuthTicket, which IS in CPAN. It's an expanded version of the Eagle book's modules, and very capable, yet also relatively simple. --Jon Robison Per Einar Ellefsen wrote: At 21:50 31.05.2002, Arnold van Kampen wrote: Hi Where did it go? The modules

Apache::TicketAccess

2002-03-12 Thread Ray Recendez
I am new to perl/mod_perl and I am trying to implement secure authentication with expirable ticket/cookies on our website (Apache 1.3.9-Solaris 2.8). I am trying to use Apache::TicketAccess with Apache 1.3.9, modssl, openssl, and mod_ssl installed but I am having problems even though

Re: Apache::TicketAccess

2002-03-12 Thread Perrin Harkins
Ray Recendez wrote: I am new to perl/mod_perl and I am trying to implement secure authentication with expirable ticket/cookies on our website (Apache 1.3.9-Solaris 2.8). I am trying to use Apache::TicketAccess with Apache 1.3.9, modssl, openssl, and mod_ssl installed but I am having

RE: Apache::TicketAccess

2002-03-12 Thread Ray Recendez
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 12:16 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Apache::TicketAccess Ray Recendez wrote: I am new to perl/mod_perl and I am trying to implement secure authentication

Re: Apache::TicketAccess

2002-03-12 Thread Perrin Harkins
? All of them. There are platform-specific parts installed under the paths with solaris in them. Does it work when you use it from command-line? perl -MMD5 -e 'print ok\n;' Is there another similar authentication package or is Apache::TicketAccess the best one out there. I've never used

RE: Apache::TicketAccess

2002-03-12 Thread Ray Recendez
-Original Message- From: Perrin Harkins [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 12:48 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Apache::TicketAccess Ray Recendez wrote: Yes I have MD5 installed. However, MD5.pm is located in the following locations

Re: Apache::TicketAccess

2002-03-12 Thread Perrin Harkins
Ray Recendez wrote: Running it from the command line seems to work: rift_rootperl -MMD5 -e 'print ok\n;' ok Is it possible that you may have installed this module using a different compiler from the one you used for mod_perl? or maybe built mod_perl against a different perl installation?

Re: ANNOUNCE: Apache-TicketAccess 0.10

2000-04-27 Thread Bruce W. Hoylman
"Michael" == Michael Schout [EMAIL PROTECTED] writes: Michael Okay. I guess I am at a loss as to what this module should Michael be named then. It is heaily based on the TicketAccess Michael system in the modperl book. It is a ticket based Michael authentication system.

Re: ANNOUNCE: Apache-TicketAccess 0.10

2000-04-27 Thread James G Smith
"Bruce W. Hoylman" [EMAIL PROTECTED] wrote: "Michael" == Michael Schout [EMAIL PROTECTED] writes: Michael Okay. I guess I am at a loss as to what this module should Michael be named then. It is heaily based on the TicketAccess Michael system in the modperl book. It is a ticket

Re: ANNOUNCE: Apache-TicketAccess 0.10

2000-04-26 Thread Michael Schout
On Tue, Apr 25, 2000 at 11:55:26AM -0700, Doug MacEachern wrote: On Sat, 22 Apr 2000, Michael Schout wrote: I dont know what else I would name it. It is extremely similar to the TicketAccess system in the eagle book, with a lot of extra features added in. please come up with a

Re: ANNOUNCE: Apache-TicketAccess 0.10

2000-04-26 Thread Ken Williams
[EMAIL PROTECTED] (Michael Schout) wrote: On Tue, Apr 25, 2000 at 11:55:26AM -0700, Doug MacEachern wrote: On Sat, 22 Apr 2000, Michael Schout wrote: I dont know what else I would name it. It is extremely similar to the TicketAccess system in the eagle book, with a lot of extra features

Re: ANNOUNCE: Apache-TicketAccess 0.10

2000-04-22 Thread Michael Schout
On Thu, Apr 20, 2000 at 02:16:09PM -0700, Doug MacEachern wrote: On Tue, 18 Apr 2000, Michael J Schout wrote: Apache-TicketAccess-0.10.tar.gz cool, but, there's already a module named Apache::TicketAccess, listed in the apache-modlist.html: TicketAccess bdpOTicket based

Re: ANNOUNCE: Apache-TicketAccess 0.10

2000-04-20 Thread Doug MacEachern
On Tue, 18 Apr 2000, Michael J Schout wrote: Apache-TicketAccess-0.10.tar.gz cool, but, there's already a module named Apache::TicketAccess, listed in the apache-modlist.html: TicketAccessbdpOTicket based access/authentication MPB if it's something different than the example

ANNOUNCE: Apache-TicketAccess 0.10

2000-04-18 Thread Michael J Schout
Apache-TicketAccess-0.10.tar.gz has entered CPAN as file: $CPAN/authors/id/M/MS/MSCHOUT/Apache-TicketAccess-0.10.tar.gz size: 9388 bytes md5: 42a00ba96205ead6a0d03cb25903bae6 This is the inital version of Apache::TicketAccess. This version does not yet subclass Apache::AuthCookie