Urgent - Start tomcat at boot - debian lenny

2009-04-25 Thread Pablo Augusto
Hello, im having some problems, i just try ALL but tomcat 5.5.25 do not starts o boot. Please need urgent help! Can anyone send me a startup script and directions how to startup tomcat at boot on debian??? Thanks in advanced

Re: tomcat shutdown problem

2009-04-25 Thread Pid
S Arvind wrote: A wierd problem occur while shutdowning the tomcat 6 in the Fedora and Centos. Usually i use shell file to shutdown. After shutting down when see the postgre preocess by [code]*ps -ef | grep java*[/code] it is still showing the process as running. such as [code]

Re: tomcat shutdown problem

2009-04-25 Thread S Arvind
Thanks pid... Can u able to give me more idea to solve it if possible.. Thanks, Arvind S *Many of lifes failure are people who did not realize how close they were to success when they gave up. -Thomas Edison * On Sat, Apr 25, 2009 at 2:00 PM, Pid p...@pidster.com wrote: S Arvind wrote: A

Re: Browser shows source of .jsp file. Why?

2009-04-25 Thread Pid
dfobox wrote: answer is pretty simple It sounds like their setup is publishing the JSP files under the HTTP document root as well as under the Tomcat webapps directory. This often causes the issue you experienced, and presents a security risk. If you can, I'd recommend separating out the two

Re: tomcat shutdown problem

2009-04-25 Thread Pid
S Arvind wrote: Thanks pid... Can u able to give me more idea to solve it if possible.. Did you write your application? Are you using Quartz in your application? Are you starting new Threads in your app? When you have started and stopped the application a few times are there still multiple

Re: tomcat shutdown problem

2009-04-25 Thread S Arvind
Did you write your application? there are team of 200 Engineers wrote that application so i dont know where the problem is Are you using Quartz in your application? yeah we have quartz scheduler in our application. But when we run in Tomcat 5 we dont have this kind of problem Are you starting

Re: tomcat shutdown problem

2009-04-25 Thread Pid
Please do not keep using reply to all. It is annoying and unnecessary. I will obviously receive a copy of the mail if you just send a reply to the list. Did you write your application? there are team of 200 Engineers wrote that application so i dont know where the problem is Are you using

Re: Browser shows source of .jsp file. Why?

2009-04-25 Thread David Rush
I'm having the same problem, where markup is sometimes appearing in the browser window instead of the rendered HTML. I'm using my own server (MS Windows Server 2003), with Tomcat 6.0.18 behind a reverse proxy on Apache 2.2.11. When I access one of my webapps via Tomcat's port

Re: mod_jk, not sure if an issue

2009-04-25 Thread André Warnier
Hi Rainer. Thanks very much for the time you took to analyse the case below. However, I am still puzzled : This is indeed a system where there appear to be problems at the level of the connection between the client workstations/browser, and the distant server. Those are the client write

Re: Browser shows source of .jsp file. Why?

2009-04-25 Thread Ken Bowen
The variation between Content-Type: text/plain and Content-Type: text/ html is definitely your clue. The fact that it displays correctly when there is no Content-Type: header is simply evidence that browser make (reasonable) guesses. You need to determine where this variation is coming from.

RE: tomcat shutdown problem

2009-04-25 Thread Martin Gainty
usually ps -ef will show you all active processes with PID(processID) PPID(parentProcessID) THR(NumThreads) PR(priortity) NAME More information is available from the brainiacs at University of Illinois

[SOLVED] Start tomcat at boot - debian lenny

2009-04-25 Thread Pablo Augusto
Hello, it was done, but not worked. the problem was that etc/profile was loading after /etc/init.d/tomcat so the java variables was not exportes yet, to workarround i put all variavles and paths at /etc/init.d/tomcat now its working thanks for your reply On Sat, Apr 25, 2009 at 9:13 AM, André

RE: Browser shows source of .jsp file. Why?

2009-04-25 Thread Martin Gainty
David did you check your mime-mapping in your web.xml perchance are you mapping jsp to text/plain? is any other extension mapped to text/plain? mime-mapping extensionjsp/extension mime-typetext/plain/mime-type /mime-mapping Martin

Re: [SOLVED] Start tomcat at boot - debian lenny

2009-04-25 Thread André Warnier
Pablo Augusto wrote: Hello, it was done, but not worked. the problem was that etc/profile was loading after /etc/init.d/tomcat so the java variables was not exportes yet, to workarround i put all variavles and paths at /etc/init.d/tomcat I'm glad it worked for you. But the

Re: Tomcat users meetup in London

2009-04-25 Thread Mark Thomas
Caldarale, Charles R wrote: From: Mark Thomas [mailto:ma...@apache.org] Subject: Re: Tomcat users meetup in London So, how does the Thursday or Friday evening next week suite folks? Either should be ok for us. Friday daytime is tentatively set for the British Museum, with a friend of

Re: Tomcat users meetup in London

2009-04-25 Thread Leon Rosenberg
I hope you guys plan to visit munich or any other germany city soon :-) Leon On Sat, Apr 25, 2009 at 11:01 PM, Mark Thomas ma...@apache.org wrote: Caldarale, Charles R wrote: From: Mark Thomas [mailto:ma...@apache.org] Subject: Re: Tomcat users meetup in London So, how does the Thursday or

RE: Tomcat users meetup in London

2009-04-25 Thread Caldarale, Charles R
From: Mark Thomas [mailto:ma...@apache.org] Subject: Re: Tomcat users meetup in London Thursday is better for me, so lets say Thursday. I'll let someone else pick the time and place. Anywhere accessible by Tube or bus is fine by me. We did make it to London, now recovering from the jet lag

Re: mod_jk, not sure if an issue

2009-04-25 Thread Rainer Jung
Hi André, On 25.04.2009 13:58, André Warnier wrote: Hi Rainer. Thanks very much for the time you took to analyse the case below. However, I am still puzzled : This is indeed a system where there appear to be problems at the level of the connection between the client workstations/browser,

RE: mod_jk, not sure if an issue

2009-04-25 Thread Martin Gainty
errno=32 A write on a pipe for which there is no process to read the data. This condition normally generates a signal; the error is returned if the signal is ignored. Mit Freundlichen grüßen Martin __ Verzicht und Vertraulichkeitanmerkung

what is mod_jk parameter connection_pool_timeout in mod_proxy / mod_proxy_ajp / apache httpd?

2009-04-25 Thread Arne Riecken
Hello, in the past I used mod_jk with workers with connection_pool_timeout=600 and tomcat ajp connector with corresponding connectionTimeout=60 as recommended. Now I additionally want to use mod_proxy_ajp with apache 2.2.9. Where in apache httpd do I honour the tomcat

#include'ing property files into conf/catalina.properties

2009-04-25 Thread uma_rk
Env: Tomcat 6.0.14 JRE 1.6 We centralize configurations in /etc/conf and hence I would like to import property configuration files into ${CATALINA_BASE}/conf/catalina.properties using #include as in // conf/catalina.properties ... #include /etc/conf/mytomcat.properties ...