RE: Tomcat 5.5.12 and user-agent header

2005-10-12 Thread Richard Mixon
[mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 6:14 PM To: 'Tomcat Users List'; [EMAIL PROTECTED] Subject: RE: Tomcat 5.5.12 and user-agent header Have you looked at the headers between Tomcat and your UA? Is your UA actually sending the UA header? If it is then it looks like a sitemesh

Tomcat on Windows: advantages of running as a service?

2005-10-12 Thread Tom Burke
I'm running Tomcat 5.0.28 on a Windows 2003 server, and I need to automatically shut it down restart it. One way is to control it via shutdown.bat startup.bat, and run these as scheduled tasks at (say) 3:30am and 3:31am. However, I've noticed that while shutdown.bat will shut it down

RE: Tomcat on Windows: advantages of running as a service?

2005-10-12 Thread Peter Crowther
From: Tom Burke [mailto:[EMAIL PROTECTED] Sent: 12 October 2005 11:18 To: Tomcat Users List Subject: Tomcat on Windows: advantages of running as a service? I'm running Tomcat 5.0.28 on a Windows 2003 server, and I need to automatically shut it down restart it. One way is to control

Re: Tomcat on Windows: advantages of running as a service?

2005-10-12 Thread Ben Souther
Tomcat 5.0.28 on a Windows 2003 server, and I need to automatically shut it down restart it. One way is to control it via shutdown.bat startup.bat, and run these as scheduled tasks at (say) 3:30am and 3:31am. However, I've noticed that while shutdown.bat will shut it down

RE: Tomcat on Windows: advantages of running as a service?

2005-10-12 Thread Dale, Matt
Running from a service makes it a no brainer to start up tomcat when you reboot the machine as it does it automatically. Disadvantages I would see is that it hides the console and makes it difficult to changes options like JAVA_OPTS. -Original Message- From: Ben Souther [mailto

Fw: Tomcat on Windows: advantages of running as a service?

2005-10-12 Thread Tom Burke
Thanks to Peter and other who made this, in retrospect, obvious suggestion! I'm pleased to say it works perfectly. Tom Burke - Original Message - From: Peter Crowther [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Wednesday, October 12, 2005 11:49 AM

RE: Tomcat 5.5.12 and user-agent header

2005-10-12 Thread Richard Mixon
OK - yes, it was lack of sleep that was causing the problem to not appear, I was starting Tomcat 5.5.9 instead of 5.5.12, sorry :( The problem is still there. I even took SiteMesh out of the picture, to make sure it was not the problem (should of done that sooner). Here are the steps: 1

Re: Tomcat 5.5.12 and user-agent header

2005-10-12 Thread Jess Holle
Does this only occur when connecting directly to Tomcat or is it also an issue when going through Apache and mod_jk? Richard Mixon wrote: OK - yes, it was lack of sleep that was causing the problem to not appear, I was starting Tomcat 5.5.9 instead of 5.5.12, sorry :( The problem is still

RE: Tomcat 5.5.12 and user-agent header

2005-10-12 Thread Richard Mixon
Have not tried it with Apache/mod_jk in front - just with Tomcat and accessing it as http://computername:8080/stars/HomePage.do . Not sure of your drift. Are you just looking for another date point (that's good) - or is there some implication as to how user-agent headers work with Tomcat

Re: Tomcat 5.5.12 and user-agent header

2005-10-12 Thread Jess Holle
Richard Mixon wrote: Have not tried it with Apache/mod_jk in front - just with Tomcat and accessing it as http://computername:8080/stars/HomePage.do . Not sure of your drift. Are you just looking for another date point (that's good) - or is there some implication as to how user-agent headers

AW: Problems with graphics on Tomcat 5.5.9

2005-10-11 Thread Edao, Aliye
to start xvfb - you will find the script under the link above 3. Edit the startup.sh or catalina.sh as follows: #export DISPLAY export DISPLAY=IP_of_your_machine_where_Tomcat_is_running:0.0 export CATALINA_OPTS=-Djava.awt.headless=false 4. Start xvfb 5. Restart Tomcat

Problems with error handling framework in Tomcat 5.5 (includes workaround)

2005-10-11 Thread Robert Graf-Waczenski
Hi! We have a complex web application with lots of JSPs and a considerable amount of servlets for various purposes. Our app runs in Tomcat 5.5 and among other custom error handling techniques we also used the Servlet API mechanism of placing the following directive in our web.xml: error-page

Tomcat service dies

2005-10-11 Thread Joakim Ahlén
Hi! We're running Tomcat 5.5.9 as a service on Windows Server 2003. With high load on the server, the tomcat process simply dies spontaneously, with no message in the stderr or stdout-logs, but these lines in jakarta_service_xxx.log: -- [2005-10-07 12:55:38

Re: Problems with graphics on Tomcat 5.5.9

2005-10-11 Thread Amadeo Alonso
= = java.lang.NoClassDefFoundError: .. java.security.AccessController.doPrivileged(Native Method) . com.Prueba.comandos.Graficador2.crearBarChart3DVertical(Graficador2.java:211).luckamadeo- Original Message -From: Mauricio Fernandez A. [EMAIL PROTECTED]To: Tomcat Users List tomcat-user

Where does tomcat loads classes from? Mysterious classes loaded....

2005-10-11 Thread David Delbecq
Hi, to be short, tomcat send me an error in console for my webapp in classes which simply are not supposed to exist: xalan classes. Linux debian computer, here is what i do: [EMAIL PROTECTED]:~/tomcat/jakarta-tomcat-5.5.7$ find * -iname '*xalan*' [EMAIL PROTECTED]:~/tomcat/jakarta-tomcat-5.5.7

Problems with graphics on Tomcat 5.5.9 OK!!! BUT.....

2005-10-11 Thread Mauricio Fernandez A.
a script to start xvfb - you will find the script under the link above 3. Edit the startup.sh or catalina.sh as follows: #export DISPLAY export DISPLAY=IP_of_your_machine_where_Tomcat_is_running:0.0 export CATALINA_OPTS=-Djava.awt.headless=false 4. Start xvfb 5. Restart Tomcat

Re: Problems with graphics on Tomcat 5.5.9 OK!!! BUT.....

2005-10-11 Thread David Delbecq
Hello, if, like i suppose from your various errors, jfreechart require awt/swing api and do draw on it, you need to run the tomcat server inside a X server, not only do you need to have fonts installed and corresponding X libraries (like your link suggest was problem), you also need to to have X

Re: Problems with graphics on Tomcat 5.5.9 OK!!! BUT.....

2005-10-11 Thread David Delbecq
David Delbecq a écrit : Hello, if, like i suppose from your various errors, jfreechart require awt/swing api and do draw on it, you need to run the tomcat server inside a X server, not only do you need to have fonts installed and corresponding X libraries (like your link suggest was problem), you

RE: Problems with graphics on Tomcat 5.5.9 OK!!! BUT.....

2005-10-11 Thread Mauricio Fernandez A.
it be ok reboot the server in level 5?, does it have sense? Mauricio Fernández A. Ingeniero de Sistemas U. Autónoma de Manizales -Mensaje original- De: David Delbecq [mailto:[EMAIL PROTECTED] Enviado el: martes, 11 octubre, 2005 16:50 Para: Tomcat Users List Asunto: Re: Problems

tomcat 3.2.4

2005-10-11 Thread Steve Souza
Hi folks, I'm new to the list, so I apologize in advance for any faux pas I may commit here! The question is simple - we'd like to get the 3.2.4 release of Tomcat, but do not see a download link on the Apache site. Is it archived somewhere? I know it's old, but we haven't moved to the new

Re: tomcat 3.2.4

2005-10-11 Thread Glen Mazza
http://jakarta.apache.org/tomcat/tomcat-3.2-doc/index.html should be 3.2.4. Glen Steve Souza wrote: Hi folks, I'm new to the list, so I apologize in advance for any faux pas I may commit here! The question is simple - we'd like to get the 3.2.4 release of Tomcat, but do not see a download

RE: tomcat 3.2.4

2005-10-11 Thread GB Developer
http://archive.apache.org/dist/jakarta/tomcat-3/archive/v3.2.4/ -Original Message- From: Steve Souza [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 3:18 PM To: Tomcat Users List Subject: tomcat 3.2.4 Hi folks, The question is simple - we'd like to get the 3.2.4

RE: Tomcat 5.5.9 bugs?

2005-10-11 Thread Niels Beekman
Hi, Related to the Dreamweaver-issue: I have this problem too, after some debugging I found that Dreamweaver does not correctly update the lastmodified-timestamp on JSP-files when putting them on the server, which obviously fools the JSP-compiler into thinking that nothing has changed.

Anybody using autofarming feature on Tomcat 5.5 cluster?

2005-10-11 Thread Edmon Begoli
Hey all, Can anyone share any experiences with web application autofarming on the Tomcat 5.5 cluster. Is it reliable? Do you use it for production purposes? How big is the cluster? -- Thank you in advance, Edmon Begoli http://blogs.ittoolbox.com/eai/software

tomcat unable to parse HTTP GET variables if is replaced with %2526

2005-10-11 Thread Isaacson, David A. (James Tower)
Running apache: httpd-2.0.46-46.3.ent tomcat: jakarta-tomcat-4.1.30 using the mod_jk connector. Earlier yesterday we started recieving the following error. java.lang.NumberFormatException: For input string: 88%26order=44%26start=3%26end=3 The page started to get refered

RE: silent install of Tomcat

2005-10-11 Thread krux mania
´t know which one download read the README http://apache.org.es/jakarta/tomcat-5/v5.5.12/README.html Mauricio Fernandez -Mensaje original- De: krux mania [mailto:[EMAIL PROTECTED] Enviado el: lunes, 10 octubre, 2005 19:37 Para: tomcat-user@jakarta.apache.org Asunto: silent install of Tomcat

Re: silent install of Tomcat

2005-10-11 Thread krux mania
Sounds like you are using Windows? Yes i am using windows. On my Linux boxes I installed quite silently using rpm and no questions to be answered.. But you could use the tarball/zip for it. I'll try this, thanks. vivek - Yahoo! Music

RE: Tomcat 5.5.12 and user-agent header

2005-10-11 Thread Mark Thomas
Have you looked at the headers between Tomcat and your UA? Is your UA actually sending the UA header? If it is then it looks like a sitemesh problem from what you have described. There are a range of tools for looking at headers. livehttpheaders is good, as is TcpMon which is distributed as part

Re: Q: Why Tomcat return me a OLD version of my doc.jar in an Applet ?

2005-10-10 Thread Amadeo Alonso
Thaks, Darek I didn´t now that cache... Amadeo. - Original Message - From: Darek Czarkowski [EMAIL PROTECTED] To: Tomcat Users List tomcat-user@jakarta.apache.org Sent: Friday, October 07, 2005 10:21 PM Subject: Re: Q: Why Tomcat return me a OLD version of my doc.jar in an Applet

RE: Problems with graphics on Tomcat 5.5.9

2005-10-10 Thread Mauricio Fernandez A.
Trying again to make the graphics appear in my web app, I did a test web app and I had been trying to start the Tomcat with -Djava.awt.headless=true option as I read in some forums #export CATALINA_OPTS=-Djava.awt.headless=true #/usr/java/jakarta-tomcat/bin/startup.sh But they do not appear

Re: Problems with graphics on Tomcat 5.5.9

2005-10-10 Thread Viorel Dragomir
What exception ? [ If it's not confidential. :) ] Viorel Dragomir . .. --- - Original Message - From: Mauricio Fernandez A. To: Tomcat Users List Sent: Monday, October 10, 2005 14:42 Subject: RE: Problems

RE: Problems with graphics on Tomcat 5.5.9

2005-10-10 Thread Mauricio Fernandez A.
: Viorel Dragomir [mailto:[EMAIL PROTECTED] Enviado el: lunes, 10 octubre, 2005 15:53 Para: Tomcat Users List Asunto: Re: Problems with graphics on Tomcat 5.5.9 What exception ? [ If it's not confidential. :) ] Viorel Dragomir

tomcat 5.0.28 redirect issue (error 302)

2005-10-10 Thread Tony Qian
All, I installed jakarta-tomcat-5.0.28 on my PC and changed port to 8283 and added a simple servlet which has doGet and doPost. I used a java program which uses httpclient to send doGet and doPost requests to that servlet. doGet worked well. However, I got following error msg for doPost

Re: Turning on debugging in Tomcat 5.5

2005-10-10 Thread Marcus Franke
On Fri, Oct 07, 2005 at 09:28:23PM -0700, Bill Barker wrote: James Rome [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Most of the installed Tomcat classes have something like container.isDebugEnabled() {...} How do I enable these debug statements in Tomcat 5.5? I'll

Re: Turning on debugging in Tomcat 5.5

2005-10-10 Thread Marcus Franke
by a facility specific level # Note that the ConsoleHandler also has a separate level # setting to limit messages printed to the console. .level= INFO So, I guess, if I use something like .level=WARN the pollution of catalina.out may will stop? Ok, had a deeper look inside the tomcat

Re: Turning on debugging in Tomcat 5.5

2005-10-10 Thread Marcus Franke
of catalina.out may will stop? Ok, had a deeper look inside the tomcat startup scripts on my RHEL box and catalina.out is written as a redirect of the tomcat stdout. So, my next guess is, java.util.logging.ConsoleHandler.level = INFO could be the right paramter to change? oh no, neither

apache -- tomcat (mod_jk) works on localhost but not other hosts

2005-10-10 Thread Scott MacAlvone
I'm very new to tomcat and apache. I've set up apache to forward to tomcat using mod_jk. It works fine on the localhost, but if I try to connect through to tomcat from any other host I get 404 file not found, although I can connect to apache. As follows: These work on localhost: http

Re: apache -- tomcat (mod_jk) works on localhost but not other hosts

2005-10-10 Thread Lyndon Tiu
On Mon, 10 Oct 2005 09:01:04 -0700 (PDT) tomcat-user@jakarta.apache.org wrote: I'm very new to tomcat and apache. I've set up apache to forward to tomcat using mod_jk. It works fine on the localhost, but if I try to connect through to tomcat from any other host I get 404 file not found

Re: apache -- tomcat (mod_jk) works on localhost but not other hosts

2005-10-10 Thread Scott MacAlvone
--- Lyndon Tiu [EMAIL PROTECTED] wrote: On Mon, 10 Oct 2005 09:01:04 -0700 (PDT) tomcat-user@jakarta.apache.org wrote: I'm very new to tomcat and apache. I've set up apache to forward to tomcat using mod_jk. It works fine on the localhost, but if I try to connect through to tomcat

silent install of Tomcat

2005-10-10 Thread krux mania
Hi, I need to install tomcat 5.0.28 silently for my application. Can this be done. If this issue has been previously discussed please send me a pointer to the message. thanks, vivek - Yahoo! Music Unlimited - Access over 1 million songs

Re: silent install of Tomcat

2005-10-10 Thread Marcus Franke
On Mon, Oct 10, 2005 at 10:36:55AM -0700, krux mania wrote: Hi, I need to install tomcat 5.0.28 silently for my application. Can this be done. If this issue has been previously discussed please send me a pointer to the message. What do you mean with silent installation? Marcus

Re: silent install of Tomcat

2005-10-10 Thread krux mania
: On Mon, Oct 10, 2005 at 10:36:55AM -0700, krux mania wrote: Hi, I need to install tomcat 5.0.28 silently for my application. Can this be done. If this issue has been previously discussed please send me a pointer to the message. What do you mean with silent installation? Marcus

Re: silent install of Tomcat

2005-10-10 Thread Marcus Franke
On Mon, Oct 10, 2005 at 11:11:30AM -0700, krux mania wrote: Hi Marcus, Silent installation also referred to as batch installation is the process where the install takes place without presenting any dialogs to the user. The user input is put into a properties file and the installation takes

RE: silent install of Tomcat

2005-10-10 Thread Mauricio Fernandez A.
Maybe you can try with the .zip distribution if your so is Windows or .tar.gz if Linux or whatever you want/need from http://jakarta.apache.org/site/downloads/downloads_tomcat-5.cgi If you don´t know which one download read the README http://apache.org.es/jakarta/tomcat-5/v5.5.12/README.html

Re: apache -- tomcat (mod_jk) works on localhost but not other hosts

2005-10-10 Thread Scott MacAlvone
Thanks for the tip Lyndon. It took a few tries, but I finally got it right, I think! __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Add parameters into tomcat service ......

2005-10-10 Thread Tony Lu
Tomcat (5.0.28) runs on Windows 2003 Server. Web application needs some information from tomcat starup. So I add following statement in startup.bat batch file set JAVA_OPTS=-Xms512m -Xmx512m - Daos.configuration=%CATALINA_HOME%/conf/aos.config Application runs well When I start Tomcat

Apache Tomcat Web Root Path Disclosure Vulnerability

2005-10-10 Thread Vineet Bhatia
Hello, One of our customers running Apache Tomcat version 4.1.29 ran some type of a vulnerability scanner which detected an "Apache Tomcat Web Root Path Disclosure Vulnerability". Did some research on the net and many sites mentioned that this vulnerability only affected 4.0.3.

RE: Add parameters into tomcat service ......

2005-10-10 Thread Caldarale, Charles R
From: Tony Lu [mailto:[EMAIL PROTECTED] Subject: Add parameters into tomcat service .. My question is: how to add statement set JAVA_OPTS=-Xms512m -Xmx512m - Daos.configuration=%CATALINA_HOME%/conf/aos.config into tomcat5 service? Use tomcat5w.exe from the bin directory. Add

[RESULT][VOTE] Tomcat 5.5.12 is stable

2005-10-09 Thread Yoav Shapira
Hi, The 5.5.12 stability vote is now over, and the release is stable. The following votes were cast for stable: Jeanfrancois Arcand Allistair Crossley Henri Gomez Jim Jagielski (not sure if this one is binding in the strictest sense of the word) Remy Maucherat Peter Rossbach Yoav Shapira Mladen

Re: Tomcat 5.5.12 and user-agent header

2005-10-09 Thread Leon Rosenberg
NT 5.0; en-US; rv:1.7) Gecko/20040626 Firefox/0.8 which I think was same behaviour as before. I took tomcat out of the box (5.5.12 tar.gz) and only changed the http port. regards leon On 10/8/05, Richard Mixon [EMAIL PROTECTED] wrote: I am just using the standard HTTP connector. This is on my

Re: OutOfMemoryException in Tomcat 5.0.28 (when using Thread / ThreadLocal)

2005-10-09 Thread Leon Rosenberg
(in a particular HTTP Thread) the HTTP Thread will collect events from the ThreadLocal, sets them in it's deamon thread (There is one-to-one correspondance between the number of Tomcat HTTP Threads and Deamon threads, hence we have 10 Deamon threads), notifies the deamon thread, and clears

RE: Tomcat 5.5.12 and user-agent header

2005-10-09 Thread Richard Mixon
is that it is a SiteMesh decorator page. If I run the same test, same pages in Tomcat 5.5.9 I never get user-agent of null. Our application does check the user-agent header a good bit. We use Select lists with option groups - but some browsers do not support this so we simulate it by indenting

RE: Tomcat 5.5.12 and user-agent header

2005-10-08 Thread Richard Mixon
. Thanks - Richard -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Bill Barker Sent: Friday, October 07, 2005 10:13 PM To: tomcat-user@jakarta.apache.org Subject: Re: Tomcat 5.5.12 and user-agent header Richard Mixon [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED

OutOfMemoryException in Tomcat 5.0.28 (when using Thread / ThreadLocal)

2005-10-08 Thread Binildas C
the ThreadLocal, sets them in it's deamon thread (There is one-to-one correspondance between the number of Tomcat HTTP Threads and Deamon threads, hence we have 10 Deamon threads), notifies the deamon thread, and clears the ThreadLocal. The Deamon thread will pushes the events to a seperate single process

common\lib and shared\lib in tomcat embedded

2005-10-07 Thread Giuseppe Briotti
We are using tomcat 4.1.29 embedded in jboss 3.2.3. It is possible to know how common\lib and shared\lib of stand-alone tomcat are mapped in tomcat embedded? TIA G. -- Giuseppe Briotti [EMAIL PROTECTED] Alme Sol, curru nitido diem qui promis et celas aliusque et idem nasceris, possis nihil

Q: Why Tomcat return me a OLD version of my doc.jar in an Applet ?

2005-10-07 Thread Amadeo Alonso
with a tag 'archive=doc.jar', Tomcat (?) v5.5 returns me the OLD VERSION of 'doc.jar' (v1) with the old bugs, as I deduct from the 'Java Console'. I have placed two connector tags in 'server.xml' file to use ports :80 y :8080 in the same way but http://expresiongrafica.caminos.upm.es:8080/PAU

RE: Q: Why Tomcat return me a OLD version of my doc.jar in an Applet ? [255718:132221]

2005-10-07 Thread RTE - Meridian Club
[EMAIL PROTECTED] Received: 10/7/2005 2:03 PM To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Q: Why Tomcat return me a OLD version of my doc.jar in an Applet ? Hi list: I apologize me last (first) email to the list with faults on date and form Thanks to Mark Thomas

tomcat webdav

2005-10-07 Thread Vineet Chadha
(DefaultServlet.java:335) javax.servlet.http.HttpServlet.service(HttpServlet.java:689) org.apache.catalina.servlets.WebdavServlet.service(WebdavServlet.java:287) javax.servlet.http.HttpServlet.service(HttpServlet.java:802) tomcat log file indicates following: java.lang.NullPointerException

RE: tomcat webdav [255807:132333]

2005-10-07 Thread RTE - Meridian Club
[EMAIL PROTECTED] Received: 10/7/2005 5:15 PM To: tomcat-user@jakarta.apache.org Subject: tomcat webdav Hi, I am trying to configure webdav to provide web resource to multiple user. For example, inside webdav directory I create multiple user directory ( user1, user2 ,user3 ). I am

Re: Embedded Tomcat and SSL?

2005-10-07 Thread lmuxer-mailinglists
I am using Tomcat as standalone and not with Apache. I got it to work after playing with it for a while. You have to set these undocumented properties to get SSL working properly: if (isSSLEnabled) { IntrospectionUtils.setProperty(httpConnector, sslProtocol, TLS

Re: Embedded Tomcat and SSL? [255821:132351]

2005-10-07 Thread RTE - Meridian Club
] Received: 10/7/2005 5:45 PM To: Tomcat Users List tomcat-user@jakarta.apache.org; Mark [EMAIL PROTECTED] Subject: Re: Embedded Tomcat and SSL? I am using Tomcat as standalone and not with Apache. I got it to work after playing with it for a while. You have to set these undocumented

Problems with graphics on Tomcat 5.5.9

2005-10-07 Thread Mauricio Fernandez A.
Hello I have a web App with some jsp´s showing graphics generated by jfreechart, in my windows dev station it works fine but in my linux production server it was working fine to some days ago and now it doesn´t. I have Tomcat 5.5.9, JDK 1.5.0_04, Red Hat Linux on a rack Now i obtain

RE: Problems with graphics on Tomcat 5.5.9 [255835:132365]

2005-10-07 Thread RTE - Meridian Club
Fernandez A. [EMAIL PROTECTED] Received: 10/7/2005 7:14 PM To: tomcat-user@jakarta.apache.org Subject: Problems with graphics on Tomcat 5.5.9 Hello I have a web App with some jsp´s showing graphics generated by jfreechart, in my windows dev station it works fine but in my linux production server

Re: Problems with graphics on Tomcat 5.5.9

2005-10-07 Thread Brian Cook
dev station it works fine but in my linux production server it was working fine to some days ago and now it doesn´t. I have Tomcat 5.5.9, JDK 1.5.0_04, Red Hat Linux on a rack Now i obtain a ServletException generated by this reason (sorry to send the trace but I want to be specific

RE: Problems with graphics on Tomcat 5.5.9

2005-10-07 Thread Mauricio Fernandez A.
. any idea? thanks! MauricioF -Mensaje original- De: Brian Cook [mailto:[EMAIL PROTECTED] Enviado el: viernes, 07 octubre, 2005 22:20 Para: Tomcat Users List Asunto: Re: Problems with graphics on Tomcat 5.5.9 You need to install the X11 libs for X. The Java Advanced Imaging API calls

Re: Q: Why Tomcat return me a OLD version of my doc.jar in an Applet ?

2005-10-07 Thread Darek Czarkowski
demand the page 'http://expresiongrafica.caminos.upm.es/PAU/AppletDoc.html', which has an Applet with a tag 'archive=doc.jar', Tomcat (?) v5.5 returns me the OLD VERSION of 'doc.jar' (v1) with the old bugs, as I deduct from the 'Java Console'. I have placed two connector tags

[OT] RE: Problems with graphics on Tomcat 5.5.9

2005-10-07 Thread David N. Smith
original- De: Brian Cook [mailto:[EMAIL PROTECTED] Enviado el: viernes, 07 octubre, 2005 22:20 Para: Tomcat Users List Asunto: Re: Problems with graphics on Tomcat 5.5.9 You need to install the X11 libs for X. The Java Advanced Imaging API calls the X libs on Linux to get font

Re: Turning on debugging in Tomcat 5.5

2005-10-07 Thread Bill Barker
James Rome [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Most of the installed Tomcat classes have something like container.isDebugEnabled() {...} How do I enable these debug statements in Tomcat 5.5? I'll assume that you are using Juli. If you are using log4j, compare what

Re: Tomcat 5.5.12 and user-agent header

2005-10-07 Thread Bill Barker
Richard Mixon [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I tested out my application on 5.5.12 yesterday and noticed one small anomally. I had a JSP in my sitemesh decorator default.jsp that ends up wrapping the login page for container managed authentication. This page had a

Problem with tomcat configuration

2005-10-06 Thread vineesh kumar
Hi all, I manged to configure https on tomcat 5.5.9 with a passord different than changeit. It's working.But i tried to configure https on port 80 (i am running tomcat as root user). but when i point the browser to the system like https://localhost/ I am getting an error indicating that connection

Re: Problem with tomcat configuration

2005-10-06 Thread Mark Eggers
(especially the sslProtocol and clientAuth). /mde/ --- vineesh kumar [EMAIL PROTECTED] wrote: Hi all, I manged to configure https on tomcat 5.5.9 with a passord different than changeit. It's working.But i tried to configure https on port 80 (i am running tomcat as root user). but when i point

Re: Problem with tomcat configuration

2005-10-06 Thread Marcus Franke
/ -- Change the port to 443. Read the documentation concerning the attributes (especially the sslProtocol and clientAuth). Maybe, but https ins predefined in your browser to use port 443, so if you use https://localhost/ you must ensure, that you have tomcat running on this special machine

Re: Modjk and Tomcat 5.5.4 problem

2005-10-06 Thread Marcus Franke
On Wed, Oct 05, 2005 at 04:24:08PM -0700, Rick wrote: We had an issue where it seemed like it would crash using mod_jk, the trouble was the connections were not letting go. By default, I think the timeout is infinite, so after setting the property: connectionTimeout, in the server.xml's

Why Tomcat return me a OLD version of my doc.jar ?

2005-10-06 Thread Amadeo Alonso
Hi all, ¿Can anyone explain it , please? I use Tomcat 5.5 as server pages html with an 'Applet' that uses a 'doc.jar' I have placed two connector tags in 'server.xml' file to use ports :80 y :8080 in the same way I Have fixed bugs from mi 'doc.jar' (v1) to a new version

Re: [ANN] Tomcat sources moved to Subversion

2005-10-06 Thread Jim Jagielski
Just a quick reminder: if you want to track HEAD, then you would checkout trunk. For example: svn co https://svn.apache.org/repos/asf/tomcat/connectors/trunk/ tomcat-connectors would create a tomcat-connectors directory that stores the development HEAD. If you skip appending the '/trunk

RE: Modjk and Tomcat 5.5.4 problem

2005-10-06 Thread Rick
Hi Marcus, idle connections running for hours and hours That was our problem as well, with those idle connections just sitting there, as I said, I wasn't sure if my solution was the correct one.. Just telling you, it seemed to work for us. I would say give it a try, the only issue we have, is

Re: Apache Tomcat Virtual Host question

2005-10-06 Thread Aria Bamdad
Hi, I asked this question yesterday and got no hints from anyone. Since then, I have been able to accomplish what I want using multiple instances of Tomcat. However, I would much rather use one instance and serve requests on different Apache port. Does anyone have ANY comments regarding my

Re: Apache Tomcat Virtual Host question

2005-10-06 Thread Nikola Milutinovic
Aria Bamdad wrote: Hi, I asked this question yesterday and got no hints from anyone. Since then, I have been able to accomplish what I want using multiple instances of Tomcat. However, I would much rather use one instance and serve requests on different Apache port. Does anyone have ANY

Tomcat 5.5.12 and user-agent header

2005-10-06 Thread Richard Mixon
I tested out my application on 5.5.12 yesterday and noticed one small anomally. I had a JSP in my sitemesh decorator default.jsp that ends up wrapping the login page for container managed authentication. This page had a statement String _userAgent =

Re: Apache Tomcat Virtual Host question

2005-10-06 Thread Aria Bamdad
. For example if you were serving http and https on the same host www.company.com, you now have to use secure.company.com for your port 443 and www.company.com for your port 80. I just wanted to see if there is a way to just use www.company.com and have Tomcat see the port too. Thanks again. Aria

Issuing HTTP requests from inside JSP under Tomcat

2005-10-06 Thread Bandak, Mark
Folks: I'm relatively new to the world of Tomcat, but ... Have locally 'made' (make) Apache 2.0.54. Binary Tomcat 4.1.29. Locally built mod_jk (1.2.14). Platform is Solaris 9. Have a vendor supplied JSP application. Runs beautifully under Tomcat 'standalone'. Need to add to an existing

Re: Modjk and Tomcat 5.5.4 problem

2005-10-06 Thread John Martyniak
Posted To: Tomcat Dev Conversation: Modjk and Tomcat 5.5.4 problem Subject: Modjk and Tomcat 5.5.4 problem Has anyone had any problems with ModJK crashing the server? I haven't been able to fully debug yet, primarily because it doesn't update any logs to state there is a problem, and I can't

error-page 503 in web.xml not working in tomcat 5.5.9

2005-10-06 Thread Archana Mathur
Hi,I am using tomcat 5.5.9. I have set up global error pages for 404 and 503 in web.xml file under tomcat home dir/conf folder. Example - error-page error-code404/error-code location/systemDown.html/location /error-page error-page error-code503/error-code location/systemDown.html/location

RE: Modjk and Tomcat 5.5.4 problem

2005-10-06 Thread Rick
set? -Rick -Original Message- From: John Martyniak [mailto:[EMAIL PROTECTED] Posted At: Thursday, October 06, 2005 8:43 AM Posted To: Tomcat Dev Conversation: Modjk and Tomcat 5.5.4 problem Subject: Re: Modjk and Tomcat 5.5.4 problem Rick, Thanks for the info. I will try it out

Re: Modjk and Tomcat 5.5.4 problem

2005-10-06 Thread John Martyniak
, cachesize, or cache_timeout set? -Rick -Original Message- From: John Martyniak [mailto:[EMAIL PROTECTED] Posted At: Thursday, October 06, 2005 8:43 AM Posted To: Tomcat Dev Conversation: Modjk and Tomcat 5.5.4 problem Subject: Re: Modjk and Tomcat 5.5.4 problem Rick, Thanks

Turning on debugging in Tomcat 5.5

2005-10-06 Thread James Rome
Most of the installed Tomcat classes have something like container.isDebugEnabled() {...} How do I enable these debug statements in Tomcat 5.5? Thanks, Jim - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Embedded Tomcat and SSL?

2005-10-06 Thread lmuxer-mailinglists
Hi, I am using an embedded tomcat instance within my application. I am trying to set up a connector using SSL. When I start the server, it creates the connector and bind to the port successfully. When I request a page from the web browser, I get the following error in my browser: The connection

Re: Why Tomcat return me a OLD version of my doc.jar ?

2005-10-06 Thread Mark Thomas
ignore any messages that hijack another thread. The correct procedure is to create a new message with a new subject. This will start a new thread. Mark tomcat-user-owner Amadeo Alonso wrote: Hi all, ¿Can anyone explain it , please? I use Tomcat 5.5 as server pages html

Re: Embedded Tomcat and SSL?

2005-10-06 Thread Mark
are you using Apace with Tomcat? I have done embedded Tomcat and SSL, but it was Apache sitting in front of Tomcat. On 10/6/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I am using an embedded tomcat instance within my application. I am trying to set up a connector using SSL. When I

limit tomcat threads lifetime

2005-10-05 Thread Marcus Franke
apache processes yesterday. Is there a timout configuration I can put in my server.xml to do so? I found some directives for mod_jk and workers.properties, but after restarting the apache service the connection is lost and the tomcat should timeout those threads himself. I checked the session

Setting up an HTTPS connection with tomcat 5.5.9

2005-10-05 Thread vineesh kumar
Hi, I am using tomcat 5.5.9 I hav o setup an https connection and i followed the configuration documentation in the apache tomcat site. But when I am using startup.sh,(yes! i am using an RHEL 4.0 host) the normal http is running but no https. How i can make it work] thanks in advance vineesh

IIS - Tomcat - And Trailing /

2005-10-05 Thread Gregg D Bolinger
While IIS and Tomcat are working fine together, to access the webapp by utalizing a welcome file, a trailing / is required on the end of the URL. Is there a way to change that requirement? http://www.site.com/app/ - works http://www.site.com/app - desired to work Thanks Gregg

Re: Tomcat Alone or tomcat+IIS/Apache

2005-10-05 Thread Gregg D Bolinger
We required IIS for a CGI ecommerce solution that was required. Plug and Pay I think is the company we bought it from. I came in late on the project and haven't had a lot of time to mess with it. Does Tomcat support CGI bins utalizing non-java technology? Gregg On 9/30/05, Peddireddy Srikanth

RE: Tomcat Alone or tomcat+IIS/Apache

2005-10-05 Thread Caldarale, Charles R
From: Gregg D Bolinger [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat Alone or tomcat+IIS/Apache Does Tomcat support CGI bins utalizing non-java technology? As usual, RTFM: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/cgi-howto.html - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL

Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Pigott, Paul
Greetings, I'm having problems executing functions in an external javascript file. It's like the .js file can't be found. I was able to do this under Tomcat 4.0 but for some reason it's not working under Tomcat 5.0. The folder under webapps is /EdiHost and I've got another folder, /js, under

Re: Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Darek Czarkowski
Tomcat 4.0 but for some reason it's not working under Tomcat 5.0. The folder under webapps is /EdiHost and I've got another folder, /js, under /EdiHost. In my HTML, I've got the attribute SRC=/js/EdiHost.js in my SCRIPT tag. Any ideas anyone? TIA, Paul CONFIDENTIALITY NOTICE

Re: Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Larry Meadors
having problems executing functions in an external javascript file. It's like the .js file can't be found. I was able to do this under Tomcat 4.0 but for some reason it's not working under Tomcat 5.0. The folder under webapps is /EdiHost and I've got another folder, /js, under /EdiHost. In my

Tomcat behind IIS - Session timeout is ignored

2005-10-05 Thread Tobias Meyer
Hello list, I have a problem with a tomcat 5.0.28 installation connected to IIS 6.0 (Windows 2003 server) with isapi_redirect.dll Everything is working well, except for the session timeout. The timeout is set to 60 minutes in the context's web.xml file (session-timeout60/session-timeout) which

Re: Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Hassan Schroeder
Larry Meadors wrote: You may be able to use this instead: src=js/EdiHost.js It is nice, because you can rename your context, and not break your webapp. :) Or, if you're using JSTL, use: src=c:url value=/js/EditHost.js/ which has the added advantage of *not* being a relative path that'll

Re: Newbie question - Tomcat 5.0 and external Javascript files

2005-10-05 Thread Larry Meadors
Yeah, i just hate the tag inatag / / stuff. Messy. ;-) Larry On 10/5/05, Hassan Schroeder [EMAIL PROTECTED] wrote: Larry Meadors wrote: You may be able to use this instead: src=js/EdiHost.js It is nice, because you can rename your context, and not break your webapp. :) Or, if

  1   2   3   4   5   6   7   8   9   10   >