Re: configuring tomcat on XP as a service

2005-05-04 Thread luke
Hi, 03May2005 @ 22:45 Greg Baynham thusly spake However, I have set the environment variables JAVA_HOME and PATH to both reference my installation of the JSDK. I have rebooted, but still get the Do the env var paths have spaces? Since I had a problem with that on windows once, I've made

Re: configuring tomcat on XP as a service

2005-05-04 Thread Dominik Drzewiecki
Greg Baynham [EMAIL PROTECTED] wrote: I'm getting tripped up trying to get tomcat to run JSP code when it's installed as a service. when I access a JSP page I get this error: root cause Unable to find a javac compiler; com.sun.tools.javac.Main is not on the classpath. Perhaps JAVA_HOME

configuring tomcat on XP as a service

2005-05-03 Thread Greg Baynham
I'm getting tripped up trying to get tomcat to run JSP code when it's installed as a service. when I access a JSP page I get this error: root cause Unable to find a javac compiler; com.sun.tools.javac.Main is not on the classpath. Perhaps JAVA_HOME does not point to the JDK However, I have set

Configuring Tomcat to delay accepting of connections until apps are ready/loaded

2005-04-08 Thread Jeremy Nix
I'm running into a particular problem running web services off of tomcat in our production environment. It seems that our client is requesting services from us at the exact time that Tomcat is being rejacked. Tomcat seems to be accepting the connection quickly, but doesn't respond to it for

Problem Configuring Tomcat 5.0.28 and IIS5.0

2005-02-11 Thread Kumar, Modha
Hi All I am trying to configure IIS5 with tomcat5.0.28. My tomcat works fine. I have tested IIS http://localhost/ http://localhost/ it shows the IIS page fine. However if I try to access jsp-examples http://localhost:8080/jsp-examples/jsp2/el/basic-arithmetic.jsp

Configuring Tomcat 4.0 to communicate with an SSL-enabled Apache server

2005-01-21 Thread Richard.R.Myers
Where can one find information on configuring Tomcat 4.0 to communicate with an SSL-enabled Apache server? The 4.0 Tomcat documents on SSL (See http://jakarta.apache.org/tomcat/tomcat-4.0-doc/ssl-howto.html under the heading SSL and Tomcat) has this paragraph: It is important to note

Configuring Tomcat as a service of Apache

2004-09-21 Thread Luis zorita
Hi users: I´m running Tomcat 5.0.28 and Apache 2.0.51 in w2000 server. Now I'm trying to configure tomcat as a service of Apache. After reading http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jk2/jk/aphowto.html . i found there is a way to auto-configure Apache setting in Tomcat.. The problem

Configuring Tomcat 5.0.27 to run PHP 5.0.1 scripts

2004-09-15 Thread d~l
I may be in a minority here .. very sparse information found so far on this .. I would like to configure Tomcat 5.0.27 to run PHP 5.0.1 scripts on Tomcat server (in addition to PHP running on Apache server). I do understand that PHP usually runs on Apache server (I have that combination

Configuring Tomcat 5.0.27 for JNDI (with the McKoi Database)

2004-09-03 Thread Caroline Jen
I am sort of stuck with configuring the server.xml file under the $TOMCAT\conf directory for JNDI. For the Tomcat 4.x, I put the following block of code; i.e. DefaultContext right after the ending /context element and before the ending /host element in the server.xml file. However, I do not see

Configuring Tomcat 5.0.27 for JNDI (with the McKoi Database)

2004-09-03 Thread Caroline Jen
I am sort of stuck with configuring the server.xml file under the $TOMCAT\conf directory for JNDI. For the Tomcat 4.x, I put the following block of code; i.e. DefaultContext right after the ending /context element and before the ending /host element in the server.xml file. However, I do not see

RE: Configuring Tomcat 5.0.27 for JNDI (with the McKoi Database)

2004-09-03 Thread Shapira, Yoav
is whatever port your database is listening on. Ask your DBA if you're not sure. Yoav Shapira Millennium Research Informatics -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Friday, September 03, 2004 3:09 PM To: [EMAIL PROTECTED] Subject: Configuring Tomcat 5.0.27

RE: Configuring Tomcat 5.0.27 for JNDI (with the McKoi Database)

2004-09-03 Thread Caroline Jen
Millennium Research Informatics -Original Message- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Friday, September 03, 2004 3:09 PM To: [EMAIL PROTECTED] Subject: Configuring Tomcat 5.0.27 for JNDI (with the McKoi Database) I am sort of stuck with configuring the server.xml file

Re: Configuring Tomcat 5.0.27 for JNDI (with the McKoi Database)

2004-09-03 Thread Peng Tuck Kwok
- From: Caroline Jen [mailto:[EMAIL PROTECTED] Sent: Friday, September 03, 2004 3:09 PM To: [EMAIL PROTECTED] Subject: Configuring Tomcat 5.0.27 for JNDI (with the McKoi Database) I am sort of stuck with configuring the server.xml file under the $TOMCAT\conf directory for JNDI

Re: Configuring Tomcat 5 to not display null value as word null

2004-08-22 Thread Rick Wong
Thanks for the response. Unfortunately, the objects are not necessarily obtained directly from the request parameter. Sometimes data is massaged or obtained from other sources. I was hoping that there is a generic way to override the behavior. Since you mentioned about the used of filter,

Re: Configuring Tomcat 5 to not display null value as word null

2004-08-21 Thread Tim Funk
Use JSTL. c:out value=${param.no_such_thing}/ c:out value=${request.no_such_thing}/ -Tim Rick Wong wrote: Hi, I have the following JSP fragment: case 1 = %=request.getParameter(no_such_thing)% case 2 = ${requestScope[no_such_thing]} The output of the page is ... case 1 = null case 2 =

Configuring Tomcat 5 to not display null value as word null

2004-08-20 Thread Rick Wong
Hi, I have the following JSP fragment: case 1 = %=request.getParameter(no_such_thing)% case 2 = ${requestScope[no_such_thing]} The output of the page is ... case 1 = null case 2 = ... Is there any way that Tomcat can be configured to not display the word null if the value is null? It

Re: Configuring Tomcat 5 to not display null value as word null

2004-08-20 Thread Justin Ruthenbeck
There is no Tomcat magic configuration parameter to make this happen. Instead, take a look at HttpServletRequestWrapper. You can combine that with a Filter to override the behavior of getParameter() for the pages that need it such that it returns instead of null when no such parameter value

Re: Configuring Tomcat 5 to not display null value as word null

2004-08-20 Thread Peng Tuck Kwok
Maybe he could check that in the jsp as well. Then maybe it's a little simpler to do. say (roughly) : . if (request.getParameter(blah)==null) { print something meaningful instead. On Fri, 20 Aug 2004 18:15:48 -0700, Justin Ruthenbeck [EMAIL PROTECTED] wrote: There is no Tomcat

Problem configuring Tomcat 5 to work with Apache 2.0.50 using JK2

2004-07-13 Thread David A. Frischknecht
Hello, I'm trying to get Tomcat 5 to work with Apache 2.0.50 on a Win2K Pro box. Tomcat works fine by itself, and so does Apache. However, when I follow the steps in the JK2 documentation and then try to test it, I get an HTTP error 500. I've included the appropriate lines from the Apache

configuring tomcat and apache on windows 2000

2004-06-15 Thread Ian Parfitt
greetings I'm trying to get tomcat running with apache on windows 2000. I used to work in UNIX a lot but have become lazy with Windows, so please excuse my questions, the first of which is why isn't there an option to download a windows version of apache with the tomcat servlet engine built

Re: Configuring Tomcat on different IP's

2004-03-31 Thread Parsons Technical Services
: Configuring Tomcat on different IP's Doug, I am finally getting something to work after doing lot of experiments. Now the issue is 1)It does not work with http://localhost, seems to be a problem with my DNS. 2)It works with http://172.27.2.44 This address (172.27.2.44) is defined

Re: Configuring Tomcat on different IP's

2004-03-31 Thread UmamaheswarKalluru
List Subject [EMAIL PROTECTED] Re: Configuring Tomcat on different rta.apache.org IP's

Re: Configuring Tomcat on different IP's

2004-03-31 Thread Parsons Technical Services
Subject [EMAIL PROTECTED] Re: Configuring Tomcat on different rta.apache.org IP's Uma, Do a ping localhost from the command line. It will only resolve to one name. So don't get concerned that it doesn't work. As long

Re: Configuring Tomcat on different IP's

2004-03-31 Thread UmamaheswarKalluru
: Configuring Tomcat on different rta.apache.org IP's

Re: Configuring Tomcat on different IP's

2004-03-30 Thread Parsons Technical Services
Uma, This has moved beyond my experiance. Other than experimenting or diving into the source what I suggest now is to reply to this post and edit the subject line to read: Two service on one Tomcat instance.[Was Re: Configuring Tomcat on different IP's] In the hope that someone with more

Re: Configuring Tomcat on different IP's

2004-03-30 Thread Emerson Cargnin
When i tested a configurations like this (although the two intances listended to the same port without ssl), i had to put the address at the Server element too. Server port=8005 address=10.9.6.85 Parsons Technical Services wrote: Uma, I removed several of the elements that were commented

RE: Configuring Tomcat on different IP's

2004-03-30 Thread Shapira, Yoav
Hi, From: Emerson Cargnin [mailto:[EMAIL PROTECTED] When i tested a configurations like this (although the two intances listended to the same port without ssl), i had to put the address at the Server element too. Server port=8005 address=10.9.6.85 What are you talking about? The Server

Re: Configuring Tomcat on different IP's

2004-03-30 Thread UmamaheswarKalluru
: Configuring Tomcat on different rta.apache.org IP's

Re: Configuring Tomcat on different IP's

2004-03-29 Thread Parsons Technical Services
] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 29, 2004 1:33 AM Subject: Re: Configuring Tomcat on different IP's Doug, Can you look at this server.xml file to see if I have done everything correct? (See attached file: server.xml) Thank you, Best Regards, Uma

Re: Configuring Tomcat on different IP's

2004-03-29 Thread UmamaheswarKalluru
[EMAIL PROTECTED] Re: Configuring Tomcat on different rta.apache.org IP's

Re: Configuring Tomcat on different IP's

2004-03-29 Thread Parsons Technical Services
Uma, I removed several of the elements that were commented out and made the changes I thought it would need. Unless someone can answer my question about which service picks up which app, you will have to put the context in the server.xml . You can experiment with it after you get it running by

Re: Configuring Tomcat on different IP's

2004-03-29 Thread UmamaheswarKalluru
Doug, I am now testing it on my local machine. My network admin has provided me with this IP configuration Connection-specific DNS Suffix . : IP Address. . . . . . . . . . . . : 172.27.2.246 Subnet Mask . . . . . . . . . . . : 255.255.0.0 IP Address. . . . . . . . . . . . : 172.27.2.44

Re: Configuring Tomcat on different IP's

2004-03-29 Thread UmamaheswarKalluru
Doug, I fogot to tell you that the first context has only one .jsp file. Here is the content of that index.jsp file % response.sendRedirect(https://172.27.2.246/IBS/Login.jsp;); % Thanks Uma - To unsubscribe, e-mail:

Configuring Tomcat on different IP's

2004-03-28 Thread UmamaheswarKalluru
Hi, My Tomcat 5.0.19 configuration is typical. I have got 2 IP addresses (202.200.xxx.xx1 and 202.200.xxx.xx2) which are pointing to 2 internal IP addresses (192.68.xxx.xx1 and 192.68.xxx.xx2) I have registered one domain name (www.mysite.com). The entire site should work only on https:// I

Re: Configuring Tomcat on different IP's

2004-03-28 Thread Parsons Technical Services
; http://marc.theaimsgroup.com/?l=tomcat-userm=104951559722619w=2 If you have some special reason for the two IPs then, never mind Doug www.parsonstechnical.com - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, March 28, 2004 11:23 PM Subject: Configuring

Re: Configuring Tomcat on different IP's

2004-03-28 Thread UmamaheswarKalluru
to Tomcat Users List Subject [EMAIL PROTECTED] Re: Configuring Tomcat on different rta.apache.org

Re: Configuring Tomcat on different IP's

2004-03-28 Thread Parsons Technical Services
- From: [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Sunday, March 28, 2004 11:58 PM Subject: Re: Configuring Tomcat on different IP's Doug, Thanks for the reply. It is just for security reasons out network administrator has planned to do. So, I need to configure as such. I

Re: Configuring Tomcat on different IP's

2004-03-28 Thread Parsons Technical Services
Clicked too fast. There is more to come... - Original Message - From: Parsons Technical Services [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 29, 2004 1:19 AM Subject: Re: Configuring Tomcat on different IP's Uma, I think this will do what you want

Re: Configuring Tomcat on different IP's

2004-03-28 Thread UmamaheswarKalluru
List Subject [EMAIL PROTECTED] Re: Configuring Tomcat on different rta.apache.org IP's

Re: Configuring Tomcat on different IP's

2004-03-28 Thread Parsons Technical Services
Technical Services [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Monday, March 29, 2004 1:26 AM Subject: Re: Configuring Tomcat on different IP's Clicked too fast. There is more to come... - Original Message - From: Parsons Technical Services [EMAIL PROTECTED

Re: Configuring Tomcat on different IP's

2004-03-28 Thread UmamaheswarKalluru
Subject [EMAIL PROTECTED] Re: Configuring Tomcat on different rta.apache.org IP's

Re: Configuring Tomcat on different IP's

2004-03-28 Thread UmamaheswarKalluru
[EMAIL PROTECTED] Re: Configuring Tomcat on different rta.apache.org IP's

Configuring tomcat logs

2004-03-01 Thread STOCKHOLM, Raymond
Does anybody know if it is possible to configure tomcat to have a RollingFileAppender (as in log4j) for its log files ? I had a no space left on device due to too many logs in $TOMCAT/logs - To unsubscribe, e-mail: [EMAIL

RE: Configuring tomcat logs

2004-03-01 Thread Shapira, Yoav
Hi, Does anybody know if it is possible to configure tomcat to have a RollingFileAppender (as in log4j) for its log files ? I had a no space left on device due to too many logs in $TOMCAT/logs Tomcat's logs are rotated nightly as you've probably noticed by now. The catalina.out log is simply a

RE: Configuring tomcat logs

2004-03-01 Thread STOCKHOLM, Raymond
Thank's for the explanation. -Message d'origine- De : Shapira, Yoav [mailto:[EMAIL PROTECTED] Envoyé : lundi 1 mars 2004 15:31 À : Tomcat Users List Objet : RE: Configuring tomcat logs Hi, Does anybody know if it is possible to configure tomcat to have a RollingFileAppender

Configuring Tomcat connections

2004-01-15 Thread Christian Cryder
Can someone offer some suggestions on configuring the number of connections Tomcat 4.1 will accept? I am using a stress tester to access the sample servlet (http://localhost:8080/examples/servlet/HelloWorldExample). Somewhere around 14-15 concurrent requests, I start seeing

RE: Configuring Tomcat connections

2004-01-15 Thread Christian Cryder
:32 PM To: Tomcat-User Subject: Configuring Tomcat connections Can someone offer some suggestions on configuring the number of connections Tomcat 4.1 will accept? I am using a stress tester to access the sample servlet (http://localhost:8080/examples/servlet/HelloWorldExample). Somewhere

Tools for Installing/Configuring Tomcat 4.x on Mac OS 10.2.8 and for Migrating Tomcat 3.x web applications to Tomcat 4.x

2003-11-25 Thread Asad Habib
Hello. Does anyone know of any software tools that manage the installation/configuration of Tomcat 4.x on Mac OS 10.2.8 and also the migration of Tomcat 3.x web applications(using JSP/Servlet technology) to Tomcat 4.x? Thanks. -Asad

Re: Tools for Installing/Configuring Tomcat 4.x on Mac OS 10.2.8 and for Migrating Tomcat 3.x web applications to Tomcat 4.x

2003-11-25 Thread Deepak Parbhoo
Hi. Have a look at this site 'http://www.micromata.com/M_tec/schroedinger/index.html'. Not sure if it will handle all your requirements though. DP Asad Habib wrote: Hello. Does anyone know of any software tools that manage the installation/configuration of Tomcat 4.x on Mac OS 10.2.8 and also

Problems configuring Tomcat

2003-11-12 Thread crow none
Hi, i`m sorry to bother you but i have a little problem when i try to configure the security constraint using the deployment descriptor , an error like this appears ERROR reading java.io.FileInputstream At Line 19 /web-app/security-constraint/. I`d really appreciate it if you could help me.

configuring tomcat 4.1.29 with apache 2 using mod_jk2. HELP me please

2003-11-10 Thread Dionisio Ruiz de Zarate
Hello. i want to configura my tomcat with apache for using mod_jk2 in my linux suse 9. i know how to configure to use mok_jk, but i must to change to mod_jk2 and i don'tknow .how to make this. for configuring to use the mod jk i configure IfModule mod_jk.c JkWorkersFile

Re: configuring tomcat 4.1.29 with apache 2 using mod_jk2. HELP me please

2003-11-10 Thread Andrew Davis
All you need for apache and mod_jk2 is the LoadModule line. Then you need a workers2.properties file in your apache_home/conf directory. You'll need to search on google or the apache.org site for workers2.properties file parameters. AD Dionisio Ruiz de Zarate wrote: Hello. i want to

error configuring tomcat + apache with mod_jk2

2003-11-10 Thread Dionisio Ruiz de Zarate
Hello. i am tryinf to cofigure the tomcat 4.1.29 + apache 2.0.47 into one linux machine. for this pourpose i have configure in the apche conf file this: LoadModule jk2_module /usr/lib/apache2/mod_jk2.so Location /*.jsp JkUriSet worker ajp13:localhost:8009 /Location and into the

Re: error configuring tomcat + apache with mod_jk2

2003-11-10 Thread Andrew Davis
Try an 'apachectl configtest'. With mod_jk2, I don't believe any directives are allowed/permitted in httpd.conf. I was in a similar boat last week, only I'm using Apache 1.3.27. My *understanding* is that you should only Load/Add the module in httpd.conf. The workers2.properties file needs to

Configuring tomcat web server

2003-11-06 Thread Dominique Boyer
letterHi, I'm quite newbie in tomcat configuration ! I would like to add a DNS that throw on a directory. I think that i have to work with connector (Coyote HTTP/1.1), but i have no idea of what file to change and no example. Is someone have a file or a example ? my version is : Apache

RE: Configuring tomcat web server

2003-11-06 Thread Shapira, Yoav
Howdy, I would like to add a DNS that throw on a directory. What does this mean? Yoav Shapira This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only

Re: Configuring Tomcat

2003-10-30 Thread Adam Hardy
On 10/29/2003 10:57 PM Balan Srinivasan wrote: Hi I'm in the process of installing/configuring Tomcat on a Linux machine and I'm having troubles doing all this. Would like to know if there is a step-by-step instruction available with you guys with reference to the configuration of a Tomcat

Configuring Tomcat

2003-10-29 Thread Balan Srinivasan
Hi I'm in the process of installing/configuring Tomcat on a Linux machine and I'm having troubles doing all this. Would like to know if there is a step-by-step instruction available with you guys with reference to the configuration of a Tomcat server. Would be nice if youhave it with reference

Configuring tomcat to serve request from specific IP addresses

2003-10-28 Thread Hari Krishna \( Associate \)
Hi, Is there any way to configure tomcat to enable its services (HTTP request/responses ) to specific IP address(s) only ? If yes, Can these configurations be made dynamically so that without restarting the tomcat changes should be active? I am using Tomcat 4.0.1 and is a standalone. I checked

RE: Configuring tomcat to serve request from specific IP addresses

2003-10-28 Thread Shapira, Yoav
Howdy, RemoteAddressFilter, RTFM. Yoav Shapira Millennium ChemInformatics -Original Message- From: Hari Krishna ( Associate ) [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 28, 2003 9:59 AM To: Tomcat Users List Subject: Configuring tomcat to serve request from specific IP addresses

Re: Configuring tomcat to serve request from specific IP addresses

2003-10-28 Thread Tim Funk
http://jakarta.apache.org/tomcat/faq/security.html#restrict In 4.1.X, I think this can be configured on the fly via the admin webapp. But 4.0.X will need a restart. -Tim Hari Krishna ( Associate ) wrote: Hi, Is there any way to configure tomcat to enable its services (HTTP request/responses

Re: Configuring tomcat to serve request from specific IP addresses

2003-10-28 Thread Christopher Schultz
Is there any way to configure tomcat to enable its services (HTTP request/responses ) to specific IP address(s) only? I'm sure you can do something like Apache's: Deny From All Allow From ip address ... but that would require a restart. Programmatically, you can do this by poking the allowed ip

Configuring tomcat for 2 ip addresses

2003-10-09 Thread Srinivasu Gandu
Hi All, I am using tomcat 4.1.24 Standalone on linux red hat machine. J2EE architecture. I have two applications to launch in same machine tomcat (one instance). How do I do the following configuration in server.xml? Example: 1) I have people hitting using www.domain1.com (IP Address:000.00.00.0)

error configuring tomcat

2003-09-23 Thread Dionisio Ruiz de Zarate
Hello. i want to configure intomcat one new context (http://localhost/myNewContext/ ) I have the new structure: $home |--webapps |--ROOT | |.. |--myNewcontext and in the conf file i put: Context path=/myNewContext docBase= debug=0 reloadable=true

RE: error configuring tomcat

2003-09-23 Thread robert.tomlin
docBase=myNewcontext -Original Message- From: Dionisio Ruiz de Zarate [mailto:[EMAIL PROTECTED] Sent: 23 September 2003 13:21 To: [EMAIL PROTECTED] Subject: error configuring tomcat Hello. i want to configure intomcat one new context (http://localhost/myNewContext/ ) I have the new

RE: error configuring tomcat

2003-09-23 Thread Shapira, Yoav
configuring tomcat Hello. i want to configure intomcat one new context (http://localhost/myNewContext/ ) I have the new structure: $home |--webapps |--ROOT | |.. |--myNewcontext and in the conf file i put: Context path=/myNewContext docBase= debug=0

Configuring Tomcat to NOT run as Root

2003-08-26 Thread Scott W Ricketts
I am helping set up a Citrix NFuse server running on Solaris, using Tomcat and Apache 1.3. The default install for NFuse 1.7 does not fire up Apache, rather it calls Tomcat to start alone. The default also has this running as root, something I am very uncomfortable with. I have Googled and

RE: Configuring Tomcat to NOT run as Root

2003-08-26 Thread Purvis Robert
To: [EMAIL PROTECTED] Subject: Configuring Tomcat to NOT run as Root I am helping set up a Citrix NFuse server running on Solaris, using Tomcat and Apache 1.3. The default install for NFuse 1.7 does not fire up Apache, rather it calls Tomcat to start alone. The default also has this running as root

Re: Configuring Tomcat to NOT run as Root

2003-08-26 Thread John Turner
Tomcat runs as whatever user executes the startup scripts in $CATALINA_HOME/bin. If that user is root, then Tomcat runs as root. If that user is nobody, then Tomcat's effective user is nobody. There's no (current) facility in Tomcat to switch UID as Apache does after startup. As root,

A problem with configuring tomcat with apache.

2003-07-28 Thread J. Joe Wang
Dear all, I am trying to configure tomcat 4.0.4 with apache 1.3.26 on redhat 7.2. The installation of apache is a normal one. i.e. ./configure, make, make install. The installation of tomcat 4.0.4 is also a normal one. And I followed the install.txt come with webapp_module. i.e. (1)copy

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread John Turner
Are you sure there is only one LoadModule/AddModule pair for mod_webapp? What is on line 1037 of httpd.conf? John J. Joe Wang wrote: Dear all, I am trying to configure tomcat 4.0.4 with apache 1.3.26 on redhat 7.2. The installation of apache is a normal one. i.e. ./configure, make, make

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread J. Joe Wang
Hi John, Thanks for the reply! Yeah, there is only one LoadModule/AddModule pair for mod_webapp. Here is the LoadModule/AddModule block in my httpd.conf. LoadModule php4_modulelibexec/libphp4.so LoadModule webapp_module libexec/mod_webapp.so AddModule mod_webapp.c The line 1035

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread Eric J. Pinnell
Hi, This is the mod_webapp config that comes with Solaris. I think I ran it for about a day or two. in httpd.conf the last line is: include /etc/apache/tomcat.conf tomcat.conf: LoadModule webapp_modulelibexec/mod_webapp.so AddModule mod_webapp.c WebAppConnectionconn

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread John Turner
Sounds like you have mod_webapp loaded anyway. Is it statically linked or somehing? Sorry, I don't use mod_webapp (and you shouldn't, either! ;) ), so I can't help much beyond the basic Apache-related config stuff like LoadModule and AddModule. John J. Joe Wang wrote: Hi John, Thanks for

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread J. Joe Wang
Hi John, Then what do you think I should use? Thanks, Joe On Mon, 2003-07-28 at 12:17, John Turner wrote: Sounds like you have mod_webapp loaded anyway. Is it statically linked or somehing? Sorry, I don't use mod_webapp (and you shouldn't, either! ;) ), so I can't help much beyond the

Re: A problem with configuring tomcat with apache.

2003-07-28 Thread John Turner
mod_webapp is no longer actively developed, and has some problems that will most likely never be addressed unless someone wants to revive the project. The recommended connectors are JK (mod_jk.so) or JK2 (mod_jk2.so). There are pros and cons to either, which you choose is up to you.

Re: Help needed in configuring tomcat 4.1.24

2003-07-24 Thread Zach Gatu
Make sure the your Connector directive ends with / or /Connector, i.e. make sure that it's a valid xml tag. Also take out !-- WEB_PORT -- from within Connector ... / Restart Tomcat and see if you can shut it down without errors. Zach. Sarika Inamdar wrote: Hi All, We need to start tomcat

Re: Help needed in configuring tomcat 4.1.24

2003-07-24 Thread Tang
' [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 6:27 PM Subject: RE: Help needed in configuring tomcat 4.1.24 The xml parser complains about the comment inside the tag. I think you have to use grep when you shutdown as well in order to remove the WEB_PORT comment. /René

Help needed in configuring tomcat 4.1.24

2003-07-23 Thread Sarika Inamdar
Hi All, We need to start tomcat with a user-defined port. To enable the same , in server.xml, we give the following !-- Define a non-SSL Coyote HTTP/1.1 Connector on port 8080 -- Connector className=org.apache.coyote.tomcat4.CoyoteConnector !-- WEB_PORT --port=8080

RE: Help needed in configuring tomcat 4.1.24

2003-07-23 Thread René Vangsgaard ML
The xml parser complains about the comment inside the tag. I think you have to use grep when you shutdown as well in order to remove the WEB_PORT comment. /René -Original Message- From: Sarika Inamdar To: [EMAIL PROTECTED] Sent: 23-07-03 11:53 Subject: Help needed in configuring tomcat

RE: Help needed in configuring tomcat 4.1.24

2003-07-23 Thread Shapira, Yoav
- From: Sarika Inamdar [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 5:54 AM To: [EMAIL PROTECTED] Subject: Help needed in configuring tomcat 4.1.24 Hi All, We need to start tomcat with a user-defined port. To enable the same , in server.xml, we give the following !-- Define a non-SSL

Re: Configuring Tomcat (NEWBIE)

2003-07-23 Thread Olumide
I have tried the ENV values suggested in http://jakarta.apache.org/tomcat/faq/misc.html#compile i.e.: _RUNJAVA=%JAVA_HOME%\bin\java _RUNJAVAW=%JAVA_HOME%\bin\javaw _RUNJDB=%JAVA_HOME%\bin\jdb _RUNJAVAC=%JAVA_HOME%\bin\javac but I'm still getting the HTTP Status 500 Error message:

Re: Configuring Tomcat (NEWBIE)

2003-07-23 Thread Olumide
I have tried the ENV values suggested in http://jakarta.apache.org/tomcat/faq/misc.html#compile Here is the full error log - I hope it helps your diagnosis. Thanks - Olumde ** ERROR * type Exception report message description The server encountered an

RE: Configuring Tomcat (NEWBIE)

2003-07-23 Thread Shapira, Yoav
AM To: Tomcat Users List Subject: Re: Configuring Tomcat (NEWBIE) I have tried the ENV values suggested in http://jakarta.apache.org/tomcat/faq/misc.html#compile Here is the full error log - I hope it helps your diagnosis. Thanks - Olumde ** ERROR

Re: Configuring Tomcat (NEWBIE)

2003-07-23 Thread Olumide
Sweet success at last !!! :-) I have tried the ENV values suggested in http://jakarta.apache.org/tomcat/faq/misc.html#compile i.e.: _RUNJAVA=%JAVA_HOME%\bin\java _RUNJAVAW=%JAVA_HOME%\bin\javaw _RUNJDB=%JAVA_HOME%\bin\jdb _RUNJAVAC=%JAVA_HOME%\bin\javac After making the ENV changes, I

Configuring Tomcat (NEWBIE)

2003-07-22 Thread Olumide
Hello I'm sure this is a FAQ and I've tried to retrieve the list of FAQ's without success, so please bear with me. I have installed the Apache HTTP server (its up and running) and Tomcat (at least I can see a tomcat.exe is one of the currently running processes on my Windows 2000 machine).

RE: Configuring Tomcat (NEWBIE)

2003-07-22 Thread Shapira, Yoav
help. Yoav Shapira Millennium ChemInformatics -Original Message- From: Olumide [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 2:15 PM To: [EMAIL PROTECTED] Subject: Configuring Tomcat (NEWBIE) Hello I'm sure this is a FAQ and I've tried to retrieve the list of FAQ's without

Re: Configuring Tomcat (NEWBIE)

2003-07-22 Thread John Turner
Olumide wrote: Hello I'm sure this is a FAQ and I've tried to retrieve the list of FAQ's without success, so please bear with me. I find this hard to believe. You're saying that you cannot view http://jakarta.apache.org/tomcat/faq ? I am trying to run the Hello World sample servlet

Re: Configuring Tomcat (NEWBIE)

2003-07-22 Thread Olumide
You're saying that you cannot view http://jakarta.apache.org/tomcat/faq ? I tried via e-mail to: [EMAIL PROTECTED], but got a back a message saying : FAQ - Frequently asked questions of the [EMAIL PROTECTED] list. None available yet. Thansks however for the new links. Most servlet books

Re: Configuring Tomcat (NEWBIE)

2003-07-22 Thread John Turner
Olumide wrote: Also, as a novice, you are setting yourself up for some potential grief by using Apache. Ok I will stick to tomcat. Does this mean I should stop the Apache server? Sure. Then, change Tomcat's server.xml file so that the HTTP Connector configured for port 8080 is configured

Re: Configuring Tomcat (NEWBIE)

2003-07-22 Thread epyonne
Also, as a novice, you are setting yourself up for some potential grief by using Apache. Ok I will stick to tomcat. Does this mean I should stop the Apache server? There is no requirement to use Apache to learn JSP and servlet development. You will make things much easier on yourself

Configuring tomcat to use seperate conf/server.xml files

2003-07-09 Thread Owen Fellows
Hi, I'm trying to configure multiple instances of the same tomcat. I want to have one tomcat and one webapp but multiple server.xml files (distinct datasourve per application). Is this possible in tomcat 4.1.12. I've tried setting CATALINA_HOME to the tomcat installation and setting

_Not_ Port 25. Configuring Tomcat for sendmail

2003-06-13 Thread Kyle Lange
Hi, If this has come through 2ce now, please forgive. The 1st one I sent came back with the signup response. I'm hoping someone can help me out here pls. Using Tomcat 4.1.24, I'm trying to sendmail from a .jsp app. However my sendmail is configured to listen on a different port to 25. Is

RE: _Not_ Port 25. Configuring Tomcat for sendmail

2003-06-13 Thread Shapira, Yoav
Howdy, Does specifying a mail.smtp.port work? Yoav Shapira Millennium ChemInformatics -Original Message- From: Kyle Lange [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 8:50 AM To: [EMAIL PROTECTED] Subject: _Not_ Port 25. Configuring Tomcat for sendmail Hi, If this has come

RE: _Not_ Port 25. Configuring Tomcat for sendmail

2003-06-13 Thread Kyle Lange
Works like a charm. Thank you Yoav. Is that documented somewhere and I just plain missed it? K -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 3:01 PM To: Tomcat Users List Subject: RE: _Not_ Port 25. Configuring Tomcat for sendmail

RE: _Not_ Port 25. Configuring Tomcat for sendmail

2003-06-13 Thread Shapira, Yoav
-Original Message- From: Kyle Lange [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 9:05 AM To: 'Tomcat Users List' Subject: RE: _Not_ Port 25. Configuring Tomcat for sendmail Works like a charm. Thank you Yoav. Is that documented somewhere and I just plain missed it? K -Original

_Not_ Port 25. Configuring Tomcat for sendmail; SORRY 'bout the Rcpt.

2003-06-13 Thread Kyle Lange
It's set up by default and forgot to switch it off. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Configuring Tomcat for multiple applications/users

2003-04-02 Thread dwightHugget
Can anyone point me to how to get this type of setup. I want to have multiple instance of tomcat running on the same machine under different ports, say 80, 8080, . Would I achieve this if I setup an env variable called CATALINA_BASE as described in the RUNNING.txt file ? I have only one

RE: Configuring Tomcat for multiple applications/users

2003-04-02 Thread Shapira, Yoav
[mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 11:37 PM To: Tomcat Users List Subject: Configuring Tomcat for multiple applications/users Can anyone point me to how to get this type of setup. I want to have multiple instance of tomcat running on the same machine under different ports, say

Configuring Tomcat for multiple applications/users

2003-04-01 Thread dwightHugget
Can anyone point me to how to get this type of setup. I want to have multiple instance of tomcat running on the same machine under different ports, say 80, 8080, . Would I achieve this if I setup an env variable called CATALINA_BASE as described in the RUNNING.txt file ? I have only one

  1   2   3   4   >