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

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

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

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: 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

Re: Apache Tomcat Virtual Host question

2005-10-06 Thread Aria Bamdad
Nikola, Thank you very much for you good comments. I agree that port based servers are not common. The reason we use them is for separating for example internal web sites and external public web sites. Using host name based virtual hosting, you have to give a different host name to each port.

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

2005-10-06 Thread Mark Thomas
When starting a new thread (ie sending a message to the list about a new topic) please do not reply to an existing message and change the subject line. To many of the list archiving services and mail clients used by list subscribers this makes your new message appear as part of the old

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

Re: Getting tomcat instance information into webapp

2005-10-03 Thread Kyle
David Kerber wrote: Then how do I isolate the instances of tomcat (and their respective server.xml's? Do I need multiple installations of tomcat on my disk? Start each 'instance' of tomcat with separate CATALINA_BASE env. vars. This enables a different server.xml for each instance

Re: Getting tomcat instance information into webapp

2005-10-03 Thread David Kerber
Thanks for the suggestions, Kyle! I think either one of those suggestions would be workable; I'll have to do some reading and testing to see which I like better. The only reason I wanted them to run on different ports is so that I don't have to change the url's they connect to during this

Re: Getting tomcat instance information into webapp

2005-10-02 Thread Kyle
I may be misunderstanding the question, but it seems to me that this shouldn't really be an issue. You have multiple instances of tamcat running. This means you will have multiple server.xml's (meaning multiple Engines in which you can set up your multiple realms and direct each different

Re: Getting tomcat instance information into webapp

2005-10-02 Thread David Kerber
Kyle wrote: I may be misunderstanding the question, but it seems to me that this shouldn't really be an issue. It's more likely that I don't know enought about tomcat to ask an intelligent question! You have multiple instances of tamcat running. This means you will have multiple

Re: Getting tomcat instance information into webapp

2005-10-02 Thread Kyle
Ah! Yes. See! I did mention I wasn't an expert. :) Yes, multiple instances, in my outlaid scenario equates to multiple installs. Whereas, multiple running instances doesn't necessarily. Sorry. Let me have a think about that for an hour or 4. How do you tell tomcat which port to listen

RE: Installing Tomcat 5.5 on Fedora 4 via Yum

2005-09-30 Thread Caldarale, Charles R
From: Rob Hills [mailto:[EMAIL PROTECTED] Subject: Installing Tomcat 5.5 on Fedora 4 via Yum However, I've so far been unsuccessful in finding any way to upgrade Tomcat beyond 5.0 using Yum. Has anyone else achieved this? I've never understood this fascination for fooling around with

Re: Installing Tomcat 5.5 on Fedora 4 via Yum

2005-09-30 Thread Leon Rosenberg
On 9/30/05, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Rob Hills [mailto:[EMAIL PROTECTED] Subject: Installing Tomcat 5.5 on Fedora 4 via Yum However, I've so far been unsuccessful in finding any way to upgrade Tomcat beyond 5.0 using Yum. Has anyone else achieved this? I've

[OT] RE: Installing Tomcat 5.5 on Fedora 4 via Yum

2005-09-30 Thread Peter Crowther
From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] I've never understood this fascination for fooling around with 3rd-party packaged versions of Tomcat, rather than using the unadulterated originals directly from the Tomcat download site. The process couldn't be much simpler:

RE: Multiple tomcat services?

2005-09-29 Thread Jens Nordberg
28 september 2005 16:35 To: 'Tomcat Users List' Subject: RE: Multiple tomcat services? If you look at $tomcat_home/bin directory you should see a file call service.bat. Using that file you should be able to install a tomcat service under different names. -Original Message- From: Jens

Re: Embedded Tomcat and shared objects...

2005-09-28 Thread Darryl L. Pierce
Leon Rosenberg wrote: Aehm, without looking deeper into context initialization, just a short guess: what about making your configuration objects a singleton with public static CLASSNAME getInstance() or provide a factory for them? Because the class in question is created by Spring's

RE: Multiple tomcat services?

2005-09-28 Thread Arup Vidyerthy
Install it under a different name -Original Message- From: Jens Nordberg [mailto:[EMAIL PROTECTED] Sent: 28 September 2005 15:13 To: tomcat-user@jakarta.apache.org Subject: Multiple tomcat services? Hi, I'm trying to install multiple tomcats on my machine, which works quite well except

RE: Multiple tomcat services?

2005-09-28 Thread Jens Nordberg
september 2005 16:20 To: 'Tomcat Users List' Subject: RE: Multiple tomcat services? Install it under a different name -Original Message- From: Jens Nordberg [mailto:[EMAIL PROTECTED] Sent: 28 September 2005 15:13 To: tomcat-user@jakarta.apache.org Subject: Multiple tomcat services? Hi

RE: Multiple tomcat services?

2005-09-28 Thread Hardik Tank
the name, or does it? As far as I can tell, I can only specify install directory, HTTP port, user name, password and jre. /Jens -Original Message- From: Arup Vidyerthy [mailto:[EMAIL PROTECTED] Sent: den 28 september 2005 16:20 To: 'Tomcat Users List' Subject: RE: Multiple tomcat

RE: Multiple tomcat services?

2005-09-28 Thread Arup Vidyerthy
Subject: RE: Multiple tomcat services? How do you mean? The install program for Tomcat 5.5.9 doesn't allow me to change the name, or does it? As far as I can tell, I can only specify install directory, HTTP port, user name, password and jre. /Jens -Original Message- From: Arup Vidyerthy

Re: Embedded Tomcat and shared objects...

2005-09-28 Thread Leon Rosenberg
still, spring can use the same factory. If not, use a container that can use factories :-) If nothing works, the hack would be: class MyObjectInstanceHolder{ private static MyObject instance; public set/getInstance... } ? regards leon On 9/28/05, Darryl L. Pierce [EMAIL PROTECTED] wrote:

Re: Embedded Tomcat and shared objects...

2005-09-28 Thread Mark
I have done something like this. The Factory and Singleton design patters work perfectly for this type of thing. If you create an abstraction layer, then there should be no problems On 9/28/05, Leon Rosenberg [EMAIL PROTECTED] wrote: still, spring can use the same factory. If not, use a

Re: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-28 Thread Paul Singleton
NoKideen wrote: is there anybody know how to do this ? Running Tomcat as Non-Root under Linux listen for port 80 Ask your Linux admin to disable the privileged port nonsense, which only has value on a multiaccess server, and which alwasy undermines security by unnecessarily encouraging running

Re: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-28 Thread Shankar Unni
NoKideen wrote: is there anybody know how to do this ? Running Tomcat as Non-Root under Linux listen for port 80 Google is your friend: http://www.google.com/search?q=linux+port+80+non-root - To unsubscribe, e-mail:

RE: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-27 Thread Peter Crowther
From: NoKideen [mailto:[EMAIL PROTECTED] Subject: Running Tomcat as Non-Root under Linux listen for port 80 is there anybody know how to do this ? Use the port redirection facilities in Linux (the details vary depending on your kernel, but ipchains or iptables is a good place to start if I

RE: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-27 Thread Peter Crowther
From: Peter Crowther That way, Linux can run as a non-root user but still see requests arriving on port 80. Sorry. Brain fade. Replace 'Linux' with 'Tomcat' in the above. - Peter - To unsubscribe, e-mail:

Re: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-27 Thread Andrés Glez .
Use jsvc. - Original Message - From: NoKideen [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Tuesday, September 27, 2005 6:13 PM Subject: Running Tomcat as Non-Root under Linux listen for port 80 is there anybody know how to do this ? Running Tomcat as Non-Root under

Re: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-27 Thread Joost de Heer
NoKideen said: is there anybody know how to do this ? Running Tomcat as Non-Root under Linux listen for port 80 80 is a privileged port ( 1024) and you need root-rights to bind to a privileged port. If the problem is that you don't have access to root, ask the admin to implement sudo. Joost

RE: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-27 Thread Phillip Qin
Create a normal user $TOMCAT_USER /bin/su $TOMCAT_USER -- $CATALINA_HOME/bin/startup.sh Owner is root, group is $TOMCAT_USER. -Original Message- From: NoKideen [mailto:[EMAIL PROTECTED] Sent: September 27, 2005 12:14 PM To: tomcat-user@jakarta.apache.org Subject: Running Tomcat as

Re: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-27 Thread David Smith
a.k.a. Commons-Daemon (http://jakarta.apache.org/commons/daemon/) Works beautifully. --David Andrés Glez. wrote: Use jsvc. - Original Message - From: NoKideen [EMAIL PROTECTED] To: tomcat-user@jakarta.apache.org Sent: Tuesday, September 27, 2005 6:13 PM Subject: Running Tomcat as

Re: Running Tomcat as Non-Root under Linux listen for port 80

2005-09-27 Thread Pete Stevens
On Tue, 27 Sep 2005, Joost de Heer wrote: NoKideen said: is there anybody know how to do this ? Running Tomcat as Non-Root under Linux listen for port 80 80 is a privileged port ( 1024) and you need root-rights to bind to a privileged port. If the problem is that you don't have access

Re: Embedded Tomcat and shared objects...

2005-09-27 Thread Leon Rosenberg
Aehm, without looking deeper into context initialization, just a short guess: what about making your configuration objects a singleton with public static CLASSNAME getInstance() or provide a factory for them? regards leon On 9/27/05, Darryl L. Pierce [EMAIL PROTECTED] wrote: I have embedded

RE: starting Tomcat service

2005-09-23 Thread KEREM ERKAN
You may write a shell script which includes a java program to test oracle connectivity and if it can connect, it can be used to start Tomcat. If it fails, it may say Oracle down, I am not starting Tomcat. Cheers, Kerem -Original Message- From: Tuan Quan [mailto:[EMAIL PROTECTED]

Re: Run Tomcat From Own Java Application

2005-09-23 Thread Stas Ostapenko
Maybe this can help (Embed with Tomcat) http://www.vsj.co.uk/articles/display.asp?id=319 On 9/23/05, NoKideen [EMAIL PROTECTED] wrote: It least I install JProbe Free Edition, I see that JProbe can run Tomcat from JProbe it self, .. How we can build application to run Tomcat, not a Bash

RE: starting Tomcat service

2005-09-23 Thread Tuan Quan
Thanks Kerem, But I want the script to run at boot time, in Windows. Rather than having to login and run the script manually. KEREM ERKAN [EMAIL PROTECTED] wrote: You may write a shell script which includes a java program to test oracle connectivity and if it can connect, it can be used to start

RE: starting Tomcat service

2005-09-23 Thread Peter Crowther
From: Tuan Quan [mailto:[EMAIL PROTECTED] But I want the script to run at boot time, in Windows. You might wish to look at srvany (http://support.microsoft.com/default.aspx/kb/q137890/). This allows you to start any process as a Windows service. - Peter

Re: starting Tomcat service

2005-09-23 Thread Lalit Batra
My two cents: Write a Script in Windows, make it service (Plenty of code on Web), which starts on when Windows start. On 9/23/05, Tuan Quan [EMAIL PROTECTED] wrote: Thanks Kerem, But I want the script to run at boot time, in Windows. Rather than having to login and run the script manually.

Re: Install Tomcat 5.5 quietly?

2005-09-22 Thread Jilles van Gurp
Richard Burman wrote: Hi all, Just a quick question for you; how can I launch the Tomcat installer without the installation screens popping up? Can I specify the installation directory and settings from the command line? I tried feeding the installer some parameters but it seems to completely

RE: Install Tomcat 5.5 quietly?

2005-09-22 Thread Richard Burman
To: Tomcat Users List Subject: Re: Install Tomcat 5.5 quietly? Just use the zip file instead of the installer. Unzip it wherever you want. You can do all the stuff the installer does (setting environment variables, installing a windows service and adding icons) manually or from a script. At the very

Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR

2005-09-21 Thread Dirk Weigenand
Hi, --- Ursprüngliche Nachricht --- Von: jiang ying [EMAIL PROTECTED] An: tomcat-user@jakarta.apache.org Betreff: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR Datum: Wed, 21 Sep 2005 16:26:00 +0800 hi, I know the way to access Tomcat JMX support via http adaptor. I also

Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR

2005-09-21 Thread andy gordon
Dirk is correct you need to check out the doc in order to understand your options. To add a little specificity to your challenge, you need to do at least the following to get going: 1) set remote monitoring options when you are starting the JVM. This can be accomplished multiple ways. One

Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR

2005-09-21 Thread jiang ying
suggest really do me a lot. Finally I am able to monitor the tomcat via RMI connector. Thanks a lot. cylinder From: Dirk Weigenand [EMAIL PROTECTED] Reply-To: Tomcat Users List tomcat-user@jakarta.apache.org To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: ACCESSING TOMCAT

Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR

2005-09-21 Thread Dirk Weigenand
Hi, Before posting my question, I have studied http://jakarta.apache.org/tomcat/tomcat-5.5-doc/monitoring.html. It explains the way to activate HTTP adaptor. Well it explains how to activate jmx remote monitoring right at the start of the page. Did you follow the link to SUNs web site?

Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR

2005-09-21 Thread jiang ying
List tomcat-user@jakarta.apache.org To: Tomcat Users List tomcat-user@jakarta.apache.org Subject: Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR Date: Wed, 21 Sep 2005 16:57:20 +0200 (MEST) Hi, Before posting my question, I have studied http://jakarta.apache.org/tomcat/tomcat

Re: AW: Tomcat 5.5 and Apache 2.0

2005-09-21 Thread Stephen Carville
[EMAIL PROTECTED] wrote: Could you please please please stop mailing!!!??? Send an Email to this mailto:[EMAIL PROTECTED] adress to unsubscribe! I'm not trying to unsubscribe, I'm trying to get tomcat 5 to serve up something besides error 404's and empty pages.

Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR

2005-09-21 Thread Dirk Weigenand
Hi, --- Ursprüngliche Nachricht --- Von: jiang ying [EMAIL PROTECTED] An: tomcat-user@jakarta.apache.org Betreff: Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR Datum: Wed, 21 Sep 2005 23:38:36 +0800 I did follow the link to SUNs web site and did the exercise. I know how

Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR

2005-09-21 Thread jiang ying
Subject: Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI CONNECTOR Date: Wed, 21 Sep 2005 17:58:33 +0200 (MEST) Hi, --- Urspr�ngliche Nachricht --- Von: jiang ying [EMAIL PROTECTED] An: tomcat-user@jakarta.apache.org Betreff: Re: ACCESSING TOMCAT JMX SUPPORT REMORTELY VIA THE RMI

Re: conf/tomcat-users.xml syntax and semantics

2005-09-21 Thread Sonja Löhr
Hi, Paul! I have username attributes and it works fine. the example roles can be deleted - may be they are used in some example webapps(?) Am Mittwoch, den 21.09.2005, 16:40 +0100 schrieb Paul Singleton: What is the correct syntax (for 5.5.9 and later) of conf/tomcat-users.xml, and what do

Re: conf/tomcat-users.xml syntax and semantics

2005-09-21 Thread andy gordon
A realm, in this case the UserDatabase realm is simply a collection of users, passwords, and roles. You could also think of a role as a group. It identifies valid users of a web application (or set of web applications), plus an enumeration of the list of roles associated with each valid user.

Re: connecting tomcat-5-5-9 to apache server 2-0-54

2005-09-10 Thread Bill Barker
If you have MSVC 6+ installed, just use the mod_jk2.dsp file in native2\server\apache2. Otherwise, you'll probably have to roll your own Makefile. Thomas Clery [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi, I would like to connect Apache Tomcat and Apache Server using mod_jk2

Re: Does Tomcat work on dual processor systems?

2005-09-09 Thread Asha Nallana
applications etc. blocking or controlling those ports? Asha Nallana [EMAIL PROTECTED] 09/08/2005 05:53 PM Please respond to Tomcat Users List tomcat-user@jakarta.apache.org To Tomcat Users List tomcat-user@jakarta.apache.org cc Subject Re: Does Tomcat work on dual processor systems

re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Leon Rosenberg
We have tomcat (5.0.x) on both intel xeon and amd two-processor systems, it works (under linux / jdk 1.4). Maybe you should provide more details, but it doesn't sounds like a multiprocessor problem. Regards Leon -Ursprüngliche Nachricht- Von: Asha Nallana [mailto:[EMAIL PROTECTED]

Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Asha Nallana
My problem is that the server sockets that are supposed to be created by our servlet and wait for client connections are not being created. We have a RedHat7.3 linux system. When I do a netstat -a | grep by socket connections only some of them show up. Obviously, the client connections for

Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Asha Nallana
We are using Tomcat4.1.18, JDK1.4.2, Apache1.3 and mod_jk2. Leon Rosenberg wrote: We have tomcat (5.0.x) on both intel xeon and amd two-processor systems, it works (under linux / jdk 1.4). Maybe you should provide more details, but it doesn't sounds like a multiprocessor problem. Regards

Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Stephen Caine
Asha, We are using Tomcat v5.5 running under OS X v10.4 (dual processor). No problems whatsoever. Stephen Caine CommonGround Softworks, Inc. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Atanu Neogi
/2005 05:13 PM Please respond to Tomcat Users List tomcat-user@jakarta.apache.org To Tomcat Users List tomcat-user@jakarta.apache.org cc Subject Re: Does Tomcat work on dual processor systems? My problem is that the server sockets that are supposed to be created by our servlet and wait

Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Andrew Miehs
Hi Asha, Asha Nallana wrote: We are using Tomcat4.1.18, JDK1.4.2, Apache1.3 and mod_jk2. And somewhere you mentioned Redhat 7.3. Isn't that VERY old? can you provide the output of uname -a ps auxw netstat -anp and probably server.xml Does this setup work? Did it ever work? or are you

Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Asha Nallana
network configuration? Is yours a multi-home server? Asha Nallana [EMAIL PROTECTED] 09/08/2005 05:13 PM Please respond to Tomcat Users List tomcat-user@jakarta.apache.org To Tomcat Users List tomcat-user@jakarta.apache.org cc Subject Re: Does Tomcat work on dual processor systems

Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Atanu Neogi
List tomcat-user@jakarta.apache.org cc Subject Re: Does Tomcat work on dual processor systems? Yes, my web application is creating 4 server socket instances. Out of these 4 , some of them get created and some don't. The ones created each time differ and so the word random. My application

Re: Does Tomcat work on dual processor systems?

2005-09-08 Thread Luis Torres
Hello, Im running Tomcat 4.01, 4.03, 4.131, 5.5.4 and 5.5.9 on Solaris 8/9 and also in AIX 4.3 with no problems at all. The OS takes care of passing the processing to a particular CPU. Regards, Luis Andrew Miehs wrote: Hi Asha, Asha Nallana wrote: We are using Tomcat4.1.18, JDK1.4.2,

Re: AW: Tomcat/JVM hangs in session.getAttribute / HashMap.get()

2005-09-07 Thread Wade Chandler
--- Leon Rosenberg [EMAIL PROTECTED] wrote: -Ursprüngliche Nachricht- Von: Wade Chandler [mailto:[EMAIL PROTECTED] Gesendet: Mittwoch, 7. September 2005 21:11 An: Tomcat Users List Betreff: Re: Tomcat/JVM hangs in session.getAttribute / HashMap.get() Should

Re: how tomcat not run .EXE as CGI

2005-09-06 Thread Mark Thomas
gjl wrote: Thanks very much to read my question. I have tomcat5.0 for Win32 installed locally on Windows 2k, SP4. I'm trying to run a namazu.cgi.exe (a Full-Text Search Engine. that's not Perl scripts ,but a binary file) . the file is in Tomcat 5.0\webapps\XXX\WEB-INF\cgi ,and I set the

Re: how tomcat not run .EXE as CGI (KMM147972V1081L0KM)

2005-09-06 Thread eBay Deutschland Customer Support
Hallo, leider koennen wir den genauen Sachverhalt Ihres Anliegens nicht nachvollziehen. Bitte schildern Sie uns Ihr Anliegen noch etwas ausfuehrlicher, damit wir Ihnen weiterhelfen koennen. Unser Tipp: Nennen Sie bei Ihren Anfragen auch immer Ihren Mitgliedsnamen, die der Beteiligten und die

RE: With tomcat 5 redirects to a secure port the connection fails

2005-09-06 Thread Julie Moore
Does anyone have a site that is running through a proxy? Could there be something I am missing because of that? -Original Message- From: Julie Moore [mailto:[EMAIL PROTECTED] Sent: Monday, August 29, 2005 1:50 PM To: tomcat-user@jakarta.apache.org Subject: With tomcat 5 redirects to a

RE: Connectiong tomcat to IIS - no luck and conflicting info

2005-09-06 Thread Tracy Spratt
I am exceedingly ignorant in the J2EE universe, but I did manage to get TC5.5 talking to IIS 6 effectively (3 times, so it wasn't a fluke!). Have you seen this doc: http://jakarta.apache.org/tomcat/connectors-doc/howto/iis.html It has some troubleshooting info. Be sure to at least restart the

Re: Running Tomcat 5.0.28 in server mode

2005-09-02 Thread Yassine ELassad
Dear Karim, Please provide relevant peaces of your server.xml so we can get a chance to help you or have a look here http://jakarta.apache.org/tomcat/articles/performance.pdf you may already finde whats causing your problem there Greetings YEL... directBOX Reply

RE: Running Tomcat 5.0.28 in server mode

2005-09-02 Thread Zaki, Karim R UTCHQ
-Original Message- From: Yassine ELassad [mailto:[EMAIL PROTECTED] Sent: Friday, September 02, 2005 11:03 AM To: tomcat-user@jakarta.apache.org Subject: Re: Running Tomcat 5.0.28 in server mode Dear Karim, Please provide relevant peaces of your server.xml so we can get a chance to help you or have

RE: Running Tomcat 5.0.28 in server mode

2005-09-02 Thread George Sexton
What does really slow mean? That's a subjective assessment, not a quantititative value. How many requests per second? George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Zaki, Karim R UTCHQ [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: Running Tomcat 5.0.28 in server mode

2005-09-02 Thread Zaki, Karim R UTCHQ
: Friday, September 02, 2005 12:15 PM To: 'Tomcat Users List' Subject: RE: Running Tomcat 5.0.28 in server mode What does really slow mean? That's a subjective assessment, not a quantititative value. How many requests per second? George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438

RE: Running Tomcat 5.0.28 in server mode

2005-09-02 Thread Zaki, Karim R UTCHQ
Message- From: George Sexton [mailto:[EMAIL PROTECTED] Sent: Friday, September 02, 2005 12:15 PM To: 'Tomcat Users List' Subject: RE: Running Tomcat 5.0.28 in server mode What does really slow mean? That's a subjective assessment, not a quantititative value. How many requests per second

RE: Running Tomcat 5.0.28 in server mode

2005-09-02 Thread George Sexton
P4. George Sexton MH Software, Inc. http://www.mhsoftware.com/ Voice: 303 438 9585 -Original Message- From: Zaki, Karim R UTCHQ [mailto:[EMAIL PROTECTED] Sent: Friday, September 02, 2005 11:02 AM To: Tomcat Users List Subject: RE: Running Tomcat 5.0.28 in server mode Well, I

Re: JNDI/Tomcat question from newbie

2005-09-01 Thread David Smith
Personally, I'd just keep a reference to the datasource around maybe as a class instance variable. It doesn't constitute a connection in and of itself -- just a way of getting one from the pool. Connections on the other hand should be explicitly closed as soon as they aren't needed anymore in

Re: With tomcat 5 redirects to a secure port fails

2005-08-31 Thread Paul Singleton
Julie Moore wrote: I have been looking al over for an explanation to what I am seeing. If I hit my site with https I get my secure page displayed if I hit it with http it is set up to redirect to https. How is it set up? I believe this can only be done with a client-side redirect, but you do

Re: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Brian Cook
Wow this seem likely to start flame war. Since it is written in Java there is really not much of a difference. The only thing that comes to mind is that you have to reboot windows every time you need to make a change to the CLASSPATH, JAVA_HOME, or TOMCAT_HOME variables which can be a

RE: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Caldarale, Charles R
From: Brian Cook [mailto:[EMAIL PROTECTED] Subject: Re: Does Tomcat run better on Linux or Windows? The only thing that comes to mind is that you have to reboot windows every time you need to make a change to the CLASSPATH, JAVA_HOME, or TOMCAT_HOME variables That's simply not true

Re: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Scott Reynolds
I've been running Tomcat on both Linux and Windows for a couple years now and other than the differences in installation and maintenance, haven't noticed any differences as far as stability is concerned. Scott --- Chad Lester [EMAIL PROTECTED] wrote: Is Tomcat more stable on Linux or Windows

RE: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Rob Hills
Hi All, On 30 Aug 2005 at 18:12, Caldarale, Charles R wrote: From: Brian Cook [mailto:[EMAIL PROTECTED] Subject: Re: Does Tomcat run better on Linux or Windows? The only thing that comes to mind is that you have to reboot windows every time you need to make a change

Re: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Jason Bainbridge
On 8/30/05, Rob Hills [EMAIL PROTECTED] wrote: Hi All, On 30 Aug 2005 at 18:12, Caldarale, Charles R wrote: From: Brian Cook [mailto:[EMAIL PROTECTED] Subject: Re: Does Tomcat run better on Linux or Windows? The only thing that comes to mind is that you have to reboot windows

RE: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Caldarale, Charles R
From: Rob Hills [mailto:[EMAIL PROTECTED] Subject: RE: Does Tomcat run better on Linux or Windows? I've not yet been able to find a way of changing environment variables in Windows and have the OS pick up the changes and pass them to a service (no matter how often you stop and start

Re: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Larry Meadors
Eeek, this is almost like a which is better: vi or emacs? thread... Having used tomcat in both environments, here is my $0.02 on the topic: - Linux + more secure out of the box + simpler for more complex configurations + simpler for upgrades + usually more uptime + more controlled

Re: Does Tomcat run better on Linux or Windows?

2005-08-30 Thread Michael Kleinhenz
Is Tomcat more stable on Linux or Windows 2003? What are the pros/cons of using it on each platform? If you're planning for a high-performance high-load system, don't use Windows 2003 Standard Edition. It has serious limitations in the TCP/IP stack. I wasn't able to open more than ~3500

Re: configure tomcat

2005-08-27 Thread Brian Cook
Tomcat 5.x requires JDK 1.4.2 or newer. I would get 1.5.4 or what ever the newest JDK is. Especially if you will be doing any GUI development. You do not need to configure anything in Tomcat if you are ok with its default values. If you want to make any changes to Tomcat you can do so by

Re: logging tomcat 5.5

2005-08-23 Thread Remy Maucherat
On 8/23/05, Alain Gaeremynck [EMAIL PROTECTED] wrote: I read the doc and found out that in tomcat 5.5 we are suppose to use log 4 j to handle getServletContext.log. However i rather liked the old ways Is it stil supported? if i put this in my context Logger

Re: logging tomcat 5.5

2005-08-23 Thread Alain Gaeremynck
thanks for the info. I ws afraid of that but i wanted to make sure sigh *** Remy Maucherat wrote: On 8/23/05, Alain Gaeremynck [EMAIL PROTECTED] wrote: I read the doc and found out that in tomcat 5.5 we are suppose to use log 4 j to handle getServletContext.log.

RE: logging tomcat 5.5

2005-08-23 Thread Allistair Crossley
actually you don't *have* to use log4j, since 5.5.8/9 tomcat has shipped with a customised jdk logging configuration (juli) that sets up a localhost log for you out of the box -Original Message- From: Alain Gaeremynck [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 16:09 To: Tomcat

Re: Starting Tomcat with JVM for SSL

2005-08-22 Thread Wendy Smoak
From: Mystery [EMAIL PROTECTED] We're using Lawson Software and their web products. They are telling us that we need to add this to our Tomcat 4.1 startup script: -D java.protocol.handler.pkgs=com.sun.net.ssl.internal.www.protocol Any ideas on where this goes in the startup script? I think

Re: Securing Tomcat Context Descriptor

2005-08-20 Thread Peter Rossbach
I thing you can use the Java Security Manager and OS level file permisssion for this or wrote your own DataSource JNDI Factory. Peter Brett Parsons schrieb: Hi All, There is a requirement on the server that we have Tomcat 5.0.28 deployed that no username/password information can be stored

Re: Securing Tomcat Context Descriptor

2005-08-20 Thread Mark Thomas
A couple of observations: - If someone can read the context descriptor they pretty much own Tomcat and probably the server as well. If this person is unauthorised, you have big problems regardless of whether or not they have read-only access to the database. - If the password is encrypted,

Re: Apache/Tomcat integration - What am I doing wrong?

2005-08-16 Thread Darryl L. Miles
Kyle wrote: I have Apache serving multiple VHosts. I want to (eventually) integrate different versions of Tomcat into different VHosts, but for now, I'd settle for just 5.5.9 working with my default Apache VHost. Apache works dandy alone on :80. Tomcat works just fine on :8080. I have the

Re: Apache/Tomcat integration - What am I doing wrong?

2005-08-16 Thread Kyle
Darryl, thanks the reply. Responses inline Darryl L. Miles wrote: Kyle wrote: I have Apache serving multiple VHosts. I want to (eventually) integrate different versions of Tomcat into different VHosts, but for now, I'd settle for just 5.5.9 working with my default Apache VHost. Apache

Re: Apache/Tomcat integration - What am I doing wrong?

2005-08-16 Thread Darryl L. Miles
Kyle wrote: But I have not yet managed to get www.host.domain.com/prefix-examples/this_or_that_example to work without returning a 500 Error. First is it apache or tomcat that is returning the 500 ? I'll leave the 500 question till I can be certain of the answer. I thought it could

Re: Apache/Tomcat integration - Update

2005-08-16 Thread Kyle
Ok, One step at a time. Thanks so far Darryl. I now have it working across the internal network, but not externally. The next step is what do I now need to do so that I can see the jsp/servlets-examples pages externally?? Also, as I understand it, this format means that TC 5.5.9 will be the

Re: Apache/Tomcat integration - Update

2005-08-16 Thread Darryl L. Miles
Do you have a line in Apache: NameVirtualHost *:80 I dont think ServerName should have the port number after it. This and ServerAlias are Host: header matching values. I suspect your only remaining problem now is to get Apache and Tomcat to see the same website document roots for the

Re: Apache/Tomcat integration - Update

2005-08-16 Thread Kyle
Darryl L. Miles wrote: Do you have a line in Apache: NameVirtualHost *:80 I dont think ServerName should have the port number after it. This and ServerAlias are Host: header matching values. Darryl, yes I do. However the ServerName directive I have been referring to in all msgs is

Re: jboss-tomcat bind issue

2005-08-15 Thread Michael Tria
No firewall turned on for this test. root:/etc/init.d $./iptables status Firewall is stopped. Shouldn't Tomcat either be binding to 0.0.0.0 or 127.0.0.1? tcp0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 17487/java Why is netstat showing three colons (':') instead of the

  1   2   3   4   5   6   7   8   9   10   >