Print X.509 certificate

2004-02-06 Thread Manuel Gil Perez
Hi all, I've install/configure an Apache server with SSL support (and client authentication). How can I print in the client web page his certificate complete?? Thanks and regards, -- Manuel Gil Perez -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/ma

Re: [OT] Print X.509 certificate

2004-02-06 Thread Issac Goldstand
Something like this should do the trick... print `openssl x509 -text < CERTIFICATE.PEM`; - Original Message - From: "Manuel Gil Perez" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 06, 2004 12:54 PM Subject: Print X.509 certificate > Hi all, > > I've install/confi

Re: Print X.509 certificate

2004-02-06 Thread Ged Haywood
Hello there, On Fri, 6 Feb 2004, Manuel Gil Perez wrote: > I've install/configure an Apache server with SSL support (and client > authentication). How can I print in the client web page his certificate > complete?? This is the mod_perl Mailing List. Your question does not appear to be about mod

Re: Print X.509 certificate

2004-02-06 Thread Manuel Gil Perez
Hi Ged, Excuse me for my question, but it's a dude for this mailing list. If you don't know to answer me, you don't look up any excuse, please. My question is about PERL + APACHE and how this module manage its web variables. It seems one question about mod_perl, no?? Now, I've the following PERL

Re: Print X.509 certificate

2004-02-06 Thread Ged Haywood
Hello there, On Fri, 6 Feb 2004, Manuel Gil Perez wrote: > Excuse me for my question, but it's a dude for this mailing list. Please refer to Reporting bugs: http://perl.apache.org/bugs/ 73, Ged. -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/

RE: conference talks

2004-02-06 Thread Igor Ivoilov
> Large-site > success stories plus implementation specifics would be much > appreciated! http://slashdot.org/faq/tech.shtml#te500 about load on this site http://en.wikipedia.org/wiki/Slashdot_effect -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/mail

[mp2] UDP communications in perl module running under mod_perl2

2004-02-06 Thread mmaciag
Apache/2.0.48 (Unix) mod_perl/1.99_12 Perl/v5.8.0 Should I have any difficulty running a simple socket UDP Perl module under the above configuration? Run directly from Perl, I'm able to send/recv from an external server. However, run from the apache server, the recv fails. (I've tried the Perl

RE: Problem installing libapreq on Win2k

2004-02-06 Thread Barksdale, Ray
Maurice, Had the exact problem yesterday. The fix we used was to download the libapreq.ppd file its script located in scripts/install_libapreq (http://theoryxy.uwinnipeg.ca/ppms/) Edit the ppd line for the script location. Something like install_libapreq2 We then edited the script its

Post Request - content-length = 0 with IE

2004-02-06 Thread Bippes, Arne
Title: Post Request - content-length = 0 with IE Hello list, I'm trying to override AuthenNTML (PerlAuthenHandler). While doing this i'm having the Problem that all my Post-Variables somehow disappear in MS Internet Explorer (V 6.0). Posting the same page with Mozilla, everything works fine.

Re: Calling perl output filter before Includes filter

2004-02-06 Thread david
you could always just do a global search and replace on all the files instead of defering this step to serving time -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html

Re: Calling perl output filter before Includes filter

2004-02-06 Thread Geoffrey Young
Hamilton, Henrique H wrote: > I am using apache2.0.48 and mod perl 1.99_12. > I've written a mod perl module as a perl output filter that rewrites image > links > to point to another server.[example: becomes src="//someserver.net/www.mysite.com/header.gif">] > My problem is that my perl module

Re: Print X.509 certificate

2004-02-06 Thread Torsten Foertsch
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Friday 06 February 2004 11:54, Manuel Gil Perez wrote: > authentication). How can I print in the client web page his certificate > complete?? with SSLOptions +ExportCertData the client and the server cert are stored in pem format in the SSL_CLIEN

Installing modperl under different directory tree

2004-02-06 Thread Hamilton, Henrique H
Does anyone know of a way to install modperl 2 under a different directory tree (say under /opt/modperl_1.9.12) in Redhat Linux 7.X? -- Notice: This e-mail message, together with any attachments, contains information of

Re: Installing modperl under different directory tree

2004-02-06 Thread David Hodgkinson
On 6 Feb 2004, at 19:54, Hamilton, Henrique H wrote: Does anyone know of a way to install modperl 2 under a different directory tree (say under /opt/modperl_1.9.12) in Redhat Linux 7.X? What are you doing with apache? Typically, there are two courses of action: 1. Be a slave to Redhat and do th

RE: Installing modperl under different directory tree

2004-02-06 Thread Hamilton, Henrique H
I'm building modperl2 from source. I was hoping that since I plan on building it as a dso I would be able to compile the dso to point to a different directory. I believe covalent used to sell a apache/modperl/modssl/tomcat package that installed under a directory of the user's choosing. -Origi

Re: Installing modperl under different directory tree

2004-02-06 Thread David Hodgkinson
On 6 Feb 2004, at 21:37, Hamilton, Henrique H wrote: I'm building modperl2 from source. Against a stock RH RPM? I was hoping that since I plan on building it as a dso I would be able to compile the dso to point to a different directory. Why? -- Dave Hodgkinson CTO, Rockit Factory Ltd. http://ww

RE: Installing modperl under different directory tree

2004-02-06 Thread Hamilton, Henrique H
I haven't found anywhere that has rpm's for modperl2 on RH 7.3. I also haven't had much luck building modperl2 statically into apache2.0.48. Which means I have to build the rpm myself. (This rpm will eventually be part of an apache2/Tomcat5 rpm) Before I can begin to automate this build process (w

Re: Installing modperl under different directory tree

2004-02-06 Thread David Hodgkinson
On 6 Feb 2004, at 21:53, Hamilton, Henrique H wrote: I haven't found anywhere that has rpm's for modperl2 on RH 7.3. I also haven't had much luck building modperl2 statically into apache2.0.48. Which means I have to build the rpm myself. (This rpm will eventually be part of an apache2/Tomcat5 rp

RE: Installing modperl under different directory tree

2004-02-06 Thread Ged Haywood
Hi guys, On Fri, 6 Feb 2004, Hamilton, Henrique H wrote: > I also haven't had much luck building modperl2 statically into apache2.0.48. Unless I've missed something that's not supported yet I'm afraid. 73, Ged. -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apach

open proxy behavior without obvious open-proxy config

2004-02-06 Thread Vincent Kargatis
[attempted post previously, but seems to have been silently swallowed.] I have an apache server using mod_proxy that is acting like an open proxy even though I have ProxyRequests turned Off. the conf excerpt: ProxyRequests Off RewriteEngine on RewriteRule ^/$ /index.html #pass request

Passing data to a custom_response

2004-02-06 Thread Michael L. Artz
I was wondering if it was possible to pass data from a handler to a custom_response declared handler within apache2/mod_perl2. I am putting a custom_response on the the HTTP_FORBIDDEN return code to direct the user to a login page (custom_response(Apache::HTTP_FORBIDDEN, 'login.pl')), so if th