Re: Disable password checking for Manager app

2008-07-19 Thread Rainer Jung
dracus schrieb: Greetings, all I have a web app server that has Apache in front of Tomcat. Apache is handling user authentication and security checking (through an experimental X.509 - Kerberos gateway service being developed by others in my group, but that is neither here nor there), and

Re: Disable password checking for Manager app

2008-07-19 Thread André Warnier
Rainer Jung wrote: dracus schrieb: Greetings, all I have a web app server that has Apache in front of Tomcat. Apache is handling user authentication and security checking (through an experimental X.509 - Kerberos gateway service being developed by others in my group, but that is

Re: Apache/mod_jk serves random files from tomcat

2008-07-19 Thread Rainer Jung
Tim Redding schrieb: I now have logs from both the Apache server and Tomcat. I'm a little unsure how to interpret these log files. It shows that Tomcat does serve the file correctly and it is Apache that appears to do something odd when Tomcat returns a 304 response code. Apache Access Log

Re: Apache 2.2.8+tomcat 6.0.16+Window vista http 404

2008-07-19 Thread Rainer Jung
rangeli nepal schrieb: Recently I installed apache and tomcat. Environment is depicted int subject line. They both work nice and fine independently. I am trying to integrate them with mod_jk. I belive I followed all the steps suggested by document. 1. I downloaded mod_jk ( 1.2.26) kept it as

Re: Multiple websites in tomcat

2008-07-19 Thread Ravi Sharma
Hi, I have a server running apache on port 80, and tomcat on 9080. Now apache has setting that when i enter my domain www.mydomain.com, it point sto a particular directoty on my server and shows the index.html from that dir. And now i have created one java application which i want to use for

Re: Multiple websites in tomcat

2008-07-19 Thread Gabe Wong
Hi Ravi, You need to proxy Tomcat with Apache by using mod_jk or mod_proxy (preferred) Some pertinent links: http://tomcat.apache.org/connectors-doc/webserver_howto/apache.html http://marc.info/?l=tomcat-userm=121286145508630w=2 Ravi Sharma wrote: Hi, I have a server running apache on port

Re: Multiple websites in tomcat

2008-07-19 Thread Ravi Sharma
Thanks a lot Gabe, Now i have very small problem. I have configured as per the follwoing link but when i restarting apache after changing the httpd.conf it gives error for this line JkWorkersFile /etc/httpd/conf/workers.properties Syntax error on line 992 of /etc/httpd/conf/httpd.conf:

Re: Unable to run tomcat in Eclipse

2008-07-19 Thread Ken Bowen
Are you running a version of Tomcat supplied by your Linux distribution? Often these cause many problems. You might try downloading a clean version of Tomcat from the Apache site, unzipping that, and trying it. On Jul 19, 2008, at 12:37 AM, KANIKA GUPTA wrote: Hi I am using tomcat

Re: Multiple websites in tomcat

2008-07-19 Thread Rainer Jung
Ravi Sharma schrieb: Thanks a lot Gabe, Now i have very small problem. I have configured as per the follwoing link but when i restarting apache after changing the httpd.conf it gives error for this line JkWorkersFile /etc/httpd/conf/workers.properties Once ... Syntax error on line

Re: Multiple websites in tomcat

2008-07-19 Thread Ravi Sharma
its two times only in the mail. i was just explaining it. In actual httpd.conf its only once. On Sat, Jul 19, 2008 at 5:12 PM, Rainer Jung [EMAIL PROTECTED] wrote: Ravi Sharma schrieb: Thanks a lot Gabe, Now i have very small problem. I have configured as per the follwoing link but

Re: Multiple websites in tomcat

2008-07-19 Thread Rainer Jung
Ravi Sharma wrote: its two times only in the mail. i was just explaining it. In actual httpd.conf its only once. Then provide your full httpd.conf and all file Includ'ed in it. Also double check, that you definitely know, which httpd.conf your httpd reads. Regards, Rainer On Sat, Jul

Re: Multiple websites in tomcat

2008-07-19 Thread Ravi Sharma
Hi Rainer, Thanks, i checked in included files and found that it was already declared in one of included conf file. Thanks for pointing me that.Now i have corrected it and server is starting properly with following warnings which i am skipping as of now. [Sat Jul 19 10:59:41 2008] [warn]

Re: Apache 2.2.8+tomcat 6.0.16+Window vista http 404

2008-07-19 Thread rangeli nepal
Thank you Rainer for your reply. Based on your suggestion I did following 0. removed the auto from Include directive. 1. There was log entry specified in mod_jk.conf. It was pointing to the log file in tomcat directory I changed in point to the log file in apache directory. restarted things. 2.

Re: Unable to run tomcat in Eclipse

2008-07-19 Thread KANIKA GUPTA
I am using the tomcat version downloaded from apache site only... I just cant figure out what the problem is... Kanika --- On Sat, 7/19/08, Ken Bowen [EMAIL PROTECTED] wrote: From: Ken Bowen [EMAIL PROTECTED] Subject: Re: Unable to run tomcat in Eclipse To: Tomcat Users List

logging!!

2008-07-19 Thread Shahar Cohen
Hi, I have installed tomcat5.5 with JDK 1.5 I want to log inside my access log the header content-length though I cant find anywhere on the web Or tomcat documentation on how to do it. is it possible. Please advice Thanks in advanced

RE: logging!!

2008-07-19 Thread Caldarale, Charles R
From: Shahar Cohen [mailto:[EMAIL PROTECTED] Subject: logging!! I want to log inside my access log the header content-length http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html#Access%20Log%20Valve - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY

Re: Multiple websites in tomcat

2008-07-19 Thread André Warnier
Ravi Sharma wrote: [...] I'm not as competent as Rainer, but your problem may be here : worker.list=wlb,jkstatus,testWorker and here worker.ajp13w.type=ajp13 worker.ajp13w.host=localhost worker.ajp13w.port=8009 In other words, in the workers list, you are mentioning the worker

Re: Method or function to be executed on tomcat startup

2008-07-19 Thread Yves Glodt
On Friday 18 July 2008, Mikolaj Rydzewski wrote: Edoardo Panfili wrote: xx.ServerInit is a regular servlet the code is in init(ServletConfig config) method Use of ServletContextListener is preferred. That worked very well, thanks for the hint. Helpful article: