auto-generating mod_jk.conf ???

2003-07-20 Thread achana
Hi all. I use Apache2 - mod_jk - Tomcat4 Been a while since I had to auto-generate mod_jk.conf The auto-generated copy is in .../conf/auto whereas the working copy is in .../conf I have some new virtual hosts which I inserted into server.xml. I copied server.xml to the Apache server, started and

And another thing about auto-generating mod_jk.conf

2003-07-20 Thread achana
[EMAIL PROTECTED] wrote: I modified workers.properties : from worker.list=ajp13 to worker.list=ajax, helen following is an excerpt from the new workers.properties : ... # listing workers by names e.g. worker.list=asterix, obelix, loadbalancer etc ps=/ worker.list=ajax, troy #

RE: Redirect to home page on logon

2003-07-20 Thread Tarek M. Nabil
Thanks Tim. Could you please elaborate more on how to use telnet to do this. -Original Message- From: Tim Funk [mailto:[EMAIL PROTECTED] Sent: Thursday, July 17, 2003 10:49 PM To: Tomcat Users List Subject: Re: Redirect to home page on logon I recommend posting to the struts list and

Re: Redirect to home page on logon

2003-07-20 Thread achana
Hi, this is what I do smetimes (nly to look at my own things, of course...): $ telnet 192.168.1.200 80 ... It might respose by telling me : .. Trying 192.16.1.200.. Connected to 12.168.1.200 ... Then you type in something like this : GET /help.txt HTTP/1.0 ... It will probably give you a log

login page customization for CMA

2003-07-20 Thread Yaser Al Masri
Hi, I'm using container manager authentication, and I'm trying to display different messages inside the login page depending on the caller of that page, so if a request is made to the protected resource /account/*, I want to display suitable message to those who want to access account services

Can't get SSL client certificate but can get cipher suite and key size??

2003-07-20 Thread Darren Marvin
Hi all, I am using Apache 1.3.27, Tomcat 4.1.24 and mod_jk. Normal connection seems to work well over HTTP and HTTPS but I want to get the client X509 certificate from Apache. I have read the documentation that comes with the connector package and applied the suggestions. I also have a test

Re: Recycling Tomcat

2003-07-20 Thread Rhino
Sorry, I mis-stated my first problem slightly. Please see below for the correction. - Original Message - From: Rhino To: tomcat-user Sent: Saturday, July 19, 2003 11:51 PM Subject: Recycling Tomcat Hi! We are running Tomcat 4.1.24 on a Mandrake 9.1 Linux box.

mod_jk.conf-auto or /auto/mod_jk.conf (J. Turner)?

2003-07-20 Thread Volker Jungbluth
Hi, never having trouble with Apache 1.3, TomCat 3.x and mod_jk 1.2 - now - after upgrading to TomCat 4.1.24 I do not succeed in configuring the system to be accessible via port 80. I found following web sites that are recommended for getting information about how to integrate mod_jk (jk) with

Re: mod_jk.conf-auto or /auto/mod_jk.conf (J. Turner)?

2003-07-20 Thread Simon Pabst
Coyote is not synonym for jk2, its just the new Tomcat Connector name, which you can use for HTTP (as in your case on port 8180), and AJP13 connections for both mod_jk 1 and 2 (on 8009 with protocolHandlerClassName=org.apache.jk.server.JkCoyoteHandler). See

Re: mod_jk.conf-auto or /auto/mod_jk.conf (J. Turner)?

2003-07-20 Thread Volker
Simon Pabst schrieb: Coyote is not synonym for jk2, its just the new Tomcat Connector name, which you can use for HTTP (as in your case on port 8180), and AJP13 connections for both mod_jk 1 and 2 (on 8009 with protocolHandlerClassName=org.apache.jk.server.JkCoyoteHandler). See

Re: mod_jk.conf-auto or /auto/mod_jk.conf (J. Turner)?

2003-07-20 Thread Volker
Simon Pabst schrieb: Coyote is not synonym for jk2, its just the new Tomcat Connector name, which you can use for HTTP (as in your case on port 8180), and AJP13 connections for both mod_jk 1 and 2 (on 8009 with protocolHandlerClassName=org.apache.jk.server.JkCoyoteHandler). See

application initParameters disappearing (or overwritten)

2003-07-20 Thread Gil Hauer
Hi, I'm experience something completely mysterious and I'm sure I'm doing something wrong -- the question is what?. I've set some init parameters in server.xml as follows: Context ... Parameter name=creditcard.store_id value=xxx / Parameter

Re[2]: (How to) Tomcat as a Linux service

2003-07-20 Thread Anton Tagunov
Hello All! AW to the original subject: have not used it myself, but looks like jakarta-commons/sandbox has a daemon subproject that may also provide usefull support code. -Anton - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: mod_jk.conf-auto or /auto/mod_jk.conf (J. Turner)?

2003-07-20 Thread Simon Pabst
Seems like your JkMount isn't working, since the error comes from Apache, what does the auto generated mod_jk.conf look like? At 17:15 20.07.2003 +0200, you wrote: Simon Pabst schrieb: Coyote is not synonym for jk2, its just the new Tomcat Connector name, which you can use for HTTP (as in your

per-context classpaths?

2003-07-20 Thread Gil Hauer
Hello, Is it possible to have different classpaths based on context definitions in server.xml? I'm asking because I have an 3rd-party JAR file which comes in two versions: testing and production. Unfortunately the vendor has named both JAR files the same -- it's just the classes inside that are

Re: per-context classpaths?

2003-07-20 Thread Peter Smith
You could setup a test instance of tomcat and a production instance. That's how we distinguish between test jar files and prod ones. Peter -- Peter Smith Software Engineer InfoNow Corporation From: Gil Hauer [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] Date: 20 Jul 2003

Re: per-context classpaths?

2003-07-20 Thread Simon Pabst
Sure thing, just use two different directories for the test and production webapp and put the jar files in /path/to/webapp-test/WEB-INF/lib and /path/to/webapp-prod/WEB-INF/lib and use two different Contexts: Context path=/test docBase=/path/to/webapp-test ... Context path=/prod

Re: mod_jk.conf-auto or /auto/mod_jk.conf (J. Turner)?

2003-07-20 Thread Volker
Simon Pabst schrieb: Seems like your JkMount isn't working, since the error comes from Apache, what does the auto generated mod_jk.conf look like? Hi Simon, thank you very much for your help! Meanwhile I am a little bit desperate. The generated mod_jk.conf is at the end of that posting!

Re: Solved!

2003-07-20 Thread Volker
Volker schrieb: Simon Pabst schrieb: Seems like your JkMount isn't working, since the error comes from Apache, what does the auto generated mod_jk.conf look like? Hi, Ir e m o v e d following entry in the generated mod_jk.conf - and now - I can access the servlets via both port 8080

Re: (How to) Tomcat as a Linux service

2003-07-20 Thread Oscar Carrillo
Check my HOWTO site: http://daydream.stanford.edu/tomcat/install_web_services.html You'll see in my table of contents about setting up a linux service (daemon). I provide everything there, such as the script and how to set up everything. I even provide a status command in the script that tells

Re: Solved!

2003-07-20 Thread Simon Pabst
If you put the proper ServerName in server.xml instead of localhost it should work too (unless of course you ain't got the same VirtualHost/ServerName a second time in httpd.conf), besides you should save the changed mod_jk.conf elsewhere, because Tomcat could overwrite it. IMO the

Re: tomcat+apache

2003-07-20 Thread frankie
Dear John, you mean i need try to edit the mod_jk.conf? but i remember that it so need to define another virtual host in Apache's httpd.conf?? so what i need to do now?i am very new in Linux...HELP ME!! Frankie You mean aside from the extensive documentation available at the Apache site

How to assign a context to a web application manually?

2003-07-20 Thread seera naveen
Hi, Where can I find information about Context? Currently I am using Sun ONE studio to assign context to a web application. But, how to assign a context to a web application manually? From the list, I found that by using Context element we can achieve that, but I am using Tomcat4.1.24

Not finding my servlet ....

2003-07-20 Thread Jeff Howard
Hi All, I have Tomcat installed and running. I'm trying to get it to see a test sevlet but it can't seem to find it. I started looking at the example code that comes with the 4.1.24 release. I can call the HelloWorldExample servlet from my html code and it executes fine. I went through all of the

Virtual Host: Host Name seems to have to be www or nothing at all. Please help.

2003-07-20 Thread Wade Chandler
Hello, I'm using tomcat 5.0. I seem to be having a problem with virtual hosts. I am running one virtual host called www.cltractor.com and that seems to be running fine. I also setup a virtual host called axonware.redirectme.net. I was going to use this free domain name with forwarding

How to map different webapps to two IIS web sites

2003-07-20 Thread Nathan Ward
Hello, How can I allow one web site managed by IIS to access one webapp on Tomcat and have another web site managed by IIS on the same server (i.e. same instance of IIS) access a different webapp on the same Tomcat instance? I have two webapps running on the same Tomcat server at a client's

trouble precompiling JSPs

2003-07-20 Thread Atreya Basu
Hello, I'm having some difficulty pre-compiling my JSPs. Could anyone give some insight into this? I type: jspc -d d:/psx_apps/WEB_INF d:\Projects\PSX_Gotter_2\CheckStatus.jsp and I get: Exception in thread main java.lang.ArrayIndexOutOfBoundsException: 3 at

Re: Can't get SSL client certificate but can get cipher suite and key size??

2003-07-20 Thread Bill Barker
It's a well-known bug in TC 4.1.18-4.1.24. See http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15790 for more details. The 4.1.26 release should be coming out later this month with a fix for this. Darren Marvin [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] .ac.uk... Hi all, I am