RE: [EMAIL PROTECTED] Authentication Problem

2006-11-22 Thread Boyle Owen
> -Original Message- > From: Fenlason, Josh [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 22, 2006 7:00 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Authentication Problem > > I'm having an issue where users to have multibyte characters > in their username or pass

RE: [EMAIL PROTECTED] mod_headers

2006-11-22 Thread Boyle Owen
> -Original Message- > From: Dan Nelson [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 23, 2006 4:29 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] mod_headers > > > I'm running Apache 2.0 on Debian Sarge. > > I have a non-standard application for Apache, and don't w

[EMAIL PROTECTED] mod_headers

2006-11-22 Thread Dan Nelson
I'm running Apache 2.0 on Debian Sarge. I have a non-standard application for Apache, and don't want to send any headers in the response. I thought I'd be able to do so using mod_headers. I can use the 'Header' directive to add my own header, and then append to and unset it. But using the same

Re: [EMAIL PROTECTED] Configuring module order in Apache

2006-11-22 Thread Joshua Slive
On 11/22/06, Sumit Shah <[EMAIL PROTECTED]> wrote: Hello, How do I configure the module order inside Apache. I have a mod_perl module and also a mod_jserv module. I want the mod_prl module to run before mod_jserv. In 2.x, the module order is set in the source code of the modules. In 1.3, the

Re: [EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-22 Thread toadie D
If not, is there some simple way to yank out the new lines in SSL_CLIENT_CERT on the reverse proxy? Which apache version are you using ? http://issues.apache.org/bugzilla/show_bug.cgi?id=23223 http://issues.apache.org/bugzilla/show_bug.cgi?id=19405 http://issues.apache.org/bugzilla/show_bug.cgi

Re: [EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-22 Thread Serge Dubrouski
I don't know too much about Jetty but I know for sure that you can use AJP with JBoss. Configure AJP connector in server.xml for catalina/tomcat part of JBoss, install mod_jk and look for mod_jk ssl options on how to pass client certificate. I really doubt that you can use regular mod_proxy for p

Re: [EMAIL PROTECTED] Comparing Apache HTTP server 1.3 vs 2.0.*

2006-11-22 Thread Ramdas . Hegde
Joshua, Thanks. I think what you mention makes sense - but i still wanted to make sure i was not missing anything major before going down the 2.0.* path. My initial plan was to look at the 2.2.* release but based on some initial configuration that i tried, the WLS plugin which is part of WLS 9.2 i

[EMAIL PROTECTED] Problem with SQL statment

2006-11-22 Thread Jorge Bastos
Hi There People, I have all setup, compiled the libaprutil with mysql support from svn yesterday, all working, but when using the auth it doesn't work, checking the mysql logs i have: 17 Execute [1] select password from users where username='?' in the virtualhost i have: AuthDBDUserPWQue

Re: [EMAIL PROTECTED] Comparing Apache HTTP server 1.3 vs 2.0.*

2006-11-22 Thread Joshua Slive
On 11/22/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: I was looking for articles/notes on comparing the HTTP server performance between the 1.3 and 2.0.* releases. The application that we plan on hosting will use the Apache HTTP server to forward requests to a Weblogic Server cluster using

[EMAIL PROTECTED] Comparing Apache HTTP server 1.3 vs 2.0.*

2006-11-22 Thread Ramdas . Hegde
I was looking for articles/notes on comparing the HTTP server performance between the 1.3 and 2.0.* releases. The application that we plan on hosting will use the Apache HTTP server to forward requests to a Weblogic Server cluster using the WLS plugin - all running on RHEL. The static component

RE: [EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-22 Thread Lucuk, Pete
The backend server is a 3.x version of Jboss that uses Jetty as the Servlet engine. Can you use AJP with Jetty? If not, is there some simple way to yank out the new lines in SSL_CLIENT_CERT on the reverse proxy? thanks >-Original Message- >From: Serge Dubrouski [mailto:[EMAIL PROTECTED

Re: [EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-22 Thread Serge Dubrouski
What is the backend serverf? If it's Tomcat or JBoss I'd suggest to use AJP connector that allows to pass client certificates to backend. On 11/22/06, Lucuk, Pete <[EMAIL PROTECTED]> wrote: Hello, I currently have a HTTPS reverse proxy setup and it works like a champ! I am trying to pass the c

Re: [EMAIL PROTECTED] CGI app held open

2006-11-22 Thread William A. Rowe, Jr.
You could patch it to watch the refcount drop to zero. Since httpd only supports isapi to ease use and migration to httpd - it was never really a 'development platform' for isapi - the hack to throw away the now-unused .dll is left as an exercise to the reader. Nathan Kellogg wrote: > I see your

[EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-22 Thread Lucuk, Pete
Hello, I currently have a HTTPS reverse proxy setup and it works like a champ! I am trying to pass the client cert from the reverse proxy to the backend server in the headers like so... RewriteCond %{SSL:SSL_CLIENT_CERT} (.*) RewriteRule .* - [E=SSLCC:%1] RequestHeader add X-SSL-Client-Cert %{SS

[EMAIL PROTECTED] Authentication Problem

2006-11-22 Thread Fenlason, Josh
I'm having an issue where users to have multibyte characters in their username or password can't authenticate. Does anyone know if this is supposed to work or not? Thanks. , Josh.

Re: [EMAIL PROTECTED] Directory settings

2006-11-22 Thread Susan Roesner RZ
Hi, thank you so much - the obvious thing to do I totaly forgot. Susan - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-ma

Re: [EMAIL PROTECTED] Directory settings

2006-11-22 Thread Joshua Slive
On 11/22/06, Susan Roesner RZ <[EMAIL PROTECTED]> wrote: Hi all, I use apache2.2.3 and in my httpd.conf I included a directories.conf. As soon as I include the "directories.conf" I get an error message: "You don't have permission to access / on this server". As soon as i remove the include I am

[EMAIL PROTECTED] Directory settings

2006-11-22 Thread Susan Roesner RZ
Hi all, I use apache2.2.3 and in my httpd.conf I included a directories.conf. As soon as I include the "directories.conf" I get an error message: "You don't have permission to access / on this server". As soon as i remove the include I am able to see the webpages in those directories. As I am

[EMAIL PROTECTED] Configuring module order in Apache

2006-11-22 Thread Sumit Shah
Hello, How do I configure the module order inside Apache. I have a mod_perl module and also a mod_jserv module. I want the mod_prl module to run before mod_jserv. Any help would be appreciated. Thanks Sumit - The official User-

Re: [EMAIL PROTECTED] CGI app held open

2006-11-22 Thread Nathan Kellogg
I see your point on the performance hit of unloading it on each request. But, while I'm in development it is a real pain to restart apache every time I modify the ap. Is there a way to have apache let go when the app exits or to force it to let go from the command line? At 04:47 PM 11/21/20

Re: [EMAIL PROTECTED] ServerName directive in a VirtualHost container

2006-11-22 Thread Yashesh Bhatia
thomas, that worked perfect. thx a lot. yashesh. On 11/22/06, Thomas Antony <[EMAIL PROTECTED]> wrote: Hi, > > and in the /etc/hosts file i have the following >

Re: [EMAIL PROTECTED] ServerName directive in a VirtualHost container

2006-11-22 Thread Thomas Antony
Hi, > > and in the /etc/hosts file i have the following > ---

[EMAIL PROTECTED] Apache 1.3 Configuration issue: Request cascading

2006-11-22 Thread Sumit Shah
Hello all, I am using Apache 1.3, Mod_perl 1 on HP-UX. I have Apache jserv as the interface to jsp/servlets. Is anyone aware of how to setup request cascading within Apache (not necessarily MOD_PERL). I have a file filter setup as SetHandler perl-script PerlHan

Re: [EMAIL PROTECTED] ServerName directive in a VirtualHost container

2006-11-22 Thread Yashesh Bhatia
boyle. hi, answers inline. thx. yashesh On 11/22/06, Boyle Owen <[EMAIL PROTECTED]> wrote: > -Original Message- > From: Yashesh Bhatia [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 22, 2006 2:20 PM > To: users@httpd.apache.org > Cc: Me > Subject: [EMAIL PROTECTED] ServerName

RE: [EMAIL PROTECTED] WebDAV setup on Windows XP

2006-11-22 Thread Schultz, Gary - COMM
There are programs that will allow access to and editing of documents via WEBDAV, but there really is no good free file management WEBDAV solution for Windows. The problem with commercial solutions for Windows is that people or organizations don't want to pay for a solution which is suppose to be "

RE: [EMAIL PROTECTED] ServerName directive in a VirtualHost container

2006-11-22 Thread Boyle Owen
> -Original Message- > From: Yashesh Bhatia [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 22, 2006 2:20 PM > To: users@httpd.apache.org > Cc: Me > Subject: [EMAIL PROTECTED] ServerName directive in a VirtualHost container > > Hi, > >I have the following setup > > Fedora Core

[EMAIL PROTECTED] ServerName directive in a VirtualHost container

2006-11-22 Thread Yashesh Bhatia
Hi, I have the following setup Fedora Core 6 Apache 2.2.3 In my httpd.conf file i have the following ServerRoot "/opt/httpd-2.2.3" Listen 80 # ServerName - not used si

RE: [EMAIL PROTECTED] 3 sites, same virtual host

2006-11-22 Thread Boyle Owen
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Clodoaldo > Sent: Wednesday, November 22, 2006 1:35 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] 3 sites, same virtual host > > I have 3 sites and one virtual host for each of them. The

[EMAIL PROTECTED] 3 sites, same virtual host

2006-11-22 Thread Clodoaldo
I have 3 sites and one virtual host for each of them. They are Drupal sites sharing the same document root but with different databases. The vhosts are like this: ServerName my_site_1.net DocumentRoot /var/www/html/my_site ErrorLog logs/my_site_1-error_log CustomLog logs/my_site_1-acces

Re: [EMAIL PROTECTED] Reverse Proxy woes

2006-11-22 Thread William A. Rowe, Jr.
"The backend image server is running IIS6" IIS speaks http:, only Tomcat (and perhaps some Tomcat derived app servers) can speak ajp:. Rodolfo Rosado wrote: > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, November 17, 2006 4:39 PM > To: us

RE: [EMAIL PROTECTED] re-write rules

2006-11-22 Thread Foster, Stephen \(ASPIRE\)
cheers owen, Thats a useful repository to check. Thanks Steve -Original Message- From: Boyle Owen [mailto:[EMAIL PROTECTED] Sent: 21 November 2006 12:12 To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] re-write rules > -Original Message- > From: Foster, Stephen (AS

Re: [EMAIL PROTECTED] Total response time

2006-11-22 Thread Filip Kolendo
Joshua Slive wrote: On 11/21/06, Filip Kolendo <[EMAIL PROTECTED]> wrote: Hi, is it possible to log into access log the Apache total response time. I mean from the very moment the request was received (even if it must wait to be processed for example due to lack of free threads...), to the mome