update $ENV{REMOTE_USER}

2007-01-08 Thread Tracy12
Hi, I have sampleClient.pl(CGI script) script which calls a perl module and does some validations. The question is How can I update the $ENV{REMOTE_USER} variable withing the sampleClient.pl. My install perl module is a generic perl module, Is this something possible Thanks -- View this mess

The server encountered an internal error

2007-01-08 Thread Tracy12
Hi, I have a simple httpd.conf block as follows SetHandler perl-script PerlHandler AuthCAS->test_Method2 within my perl module (inside test_Method2) I have simple re direct as follows sub test_Method2 { my $urlNew = "www.mail.yahoo.com"; printf "Location: $urlNew\n\n"; } When I hit a URL

RE: PerlAuthenHandler, PerlAuthzHandler, Reverse Proxy and Web Services Problem

2007-01-08 Thread Sylvain Perrot
Hi, Thanks for the explanation about the 3 Handlers :) It means that the first handler who returns OK stop the process since the auth is successfull ... About the mechanism, it is working in all case But it makes the WSDL generation failed : .net web server wsdl are generated on the fly if you ac

Re: PerlAuthenHandler, PerlAuthzHandler, Reverse Proxy and Web Services Problem

2007-01-08 Thread Frank Wiles
On Mon, 8 Jan 2007 17:37:54 +0100 "Sylvain Perrot" <[EMAIL PROTECTED]> wrote: > First, As I am new to modperl development, I would like to validate my > configuration :) > As I understood, PerlAuthenHandler and PerlAuthzHandler are working in > parallel, and the first who give back a OK wins ...

PerlAuthenHandler, PerlAuthzHandler, Reverse Proxy and Web Services Problem

2007-01-08 Thread Sylvain Perrot
Hi, I am trying to develop a secured Reverse Proxy which use the PerlAuthenHandler/PerlAuthzHandler to accept or reject the connection. The synoptic is the following: CLIENT -> RP (linux, apache2, modperl) -> Windows Server (.Net Application, .Net Web Service) My RP configuration is the followi

Re: saving userid

2007-01-08 Thread Perrin Harkins
Malka Cymbalista wrote: We plan on using standard http authentication. Once the user logs in, is there a way to save the userid and check it to make sure that the user who is now working is the same user who logged in? You're trying to make sure that users don't switch to logging in as some

Re: saving userid

2007-01-08 Thread Sean Davis
On Monday 08 January 2007 08:00, Malka Cymbalista wrote: > I am running Apache 2.0.55 with mod_perl 2.0.1 and Perl 5.8.1 on a Sun > Solaris machine. I am writing a perl script that requires the user to > log in with a userid and password in order to access the pages the > script creates. We plan on

saving userid

2007-01-08 Thread Malka Cymbalista
I am running Apache 2.0.55 with mod_perl 2.0.1 and Perl 5.8.1 on a Sun Solaris machine. I am writing a perl script that requires the user to log in with a userid and password in order to access the pages the script creates. We plan on using standard http authentication. Once the user logs in, is th