Re: Apache Tomcat/4.0.1 - HTTP Status 404

2003-07-15 Thread Daniel Zhang
Check your server.xml file under TOMCAT_HOME/conf. You need to add a 
Context for your /mafi
path.

Julio Lopez Marquez wrote:

Hello!
I triying to install an application, but when i call it, send the message
Apache Tomcat/4.0.1 - HTTP Status 404 - /mafi



type Status report

message /mafi

description The requested resource (/mafi) is not available.

i guess that is the configuration file, but,which?

thanks.
J.
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Apache Tomcat/4.0.1 - HTTP Status 500 - Internal Server Error

2003-03-18 Thread Tim Funk
Make sure you are using a JDK and not JRE. It looks like there is no 
java compiler available.

-Tim

lunasahu wrote:
This is the error during jsp execution.
How to solve this error;
 

Apache Tomcat/4.0.1 - HTTP Status 500 - Internal Server Error



type Exception report

message Internal Server Error

description The server encountered an internal error (Internal Server Error) that prevented it from fulfilling this request.

exception 

javax.servlet.ServletException: sun/tools/javac/Main
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:484)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
 at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:201)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
 at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2344)
 at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
 at 
org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:170)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
 at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:170)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
 at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:462)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:163)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at org.apache.catalina.connector.http.HttpProcessor.process(HttpProcessor.java:1011)
 at org.apache.catalina.connector.http.HttpProcessor.run(HttpProcessor.java:1106)
 at java.lang.Thread.run(Unknown Source)


root cause 

java.lang.NoClassDefFoundError: sun/tools/javac/Main
 at org.apache.jasper.compiler.SunJavaCompiler.compile(SunJavaCompiler.java:128)
 at org.apache.jasper.compiler.Compiler.compile(Compiler.java:271)
 at org.apache.jasper.servlet.JspServlet.loadJSP(JspServlet.java:546)
 at 
org.apache.jasper.servlet.JspServlet$JspServletWrapper.loadIfNecessary(JspServlet.java:177)
 at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:189)
 at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:382)
 at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:474)
 at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
 at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
 at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
 at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:243)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:201)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:566)
 at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
 at org.apache.catalina.core.StandardPipeline.invokeNext(StandardPipeline.java:564)
 at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:472)
 at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:943)
 at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2344)
 at 

RE: apache + tomcat 4.0.1 + virtual host

2002-09-05 Thread Turner, John


Each virtual host gets a Host element/container in server.xml.

In that Host element, create a Context for the path.

For example, in a default Tomcat install:

Host name=localhost appBase=webapps
Context path=/examples docBase=examples

So in your case:

Host name=www.domain2.com appBase=webapps
Context path= docBase=some-folder-in-webapps-just-like-examples  

Look for the root Context within the localhost Host element in server.xml
and do something similar.

John


 -Original Message-
 From: Dionisio Ruiz de Zarate [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, September 05, 2002 11:18 AM
 To: [EMAIL PROTECTED]
 Subject: apache + tomcat 4.0.1 + virtual host
 
 
 Hello with this i pass the /examples petitions to the tomcat
 
 WebAppConnection conexion warp localhost:8008
 WebAppDeploy examples conexion /examples
 
 but if i have one second virtualhost (www.domain2.com) in the 
 apache virtual
 host configuration how i must  to configure for passint to 
 the tomcat the
 jsp pages in this second domain?
 thanks
 
 
 
 --
 To unsubscribe, e-mail:   
 mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: 
 mailto:[EMAIL PROTECTED]
 

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: apache + tomcat 4.0.1 + virtual host

2002-09-05 Thread Turner, John


I forgot to mention that you will have to configure your Apache connector
for that new host name, but it looks like you are using mod_webapp, and I am
not familiar with it.

John

 -Original Message-
 From: Turner, John [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, September 05, 2002 11:30 AM
 To: 'Tomcat Users List'
 Subject: RE: apache + tomcat 4.0.1 + virtual host
 
 
 
 Each virtual host gets a Host element/container in server.xml.
 
 In that Host element, create a Context for the path.
 
 For example, in a default Tomcat install:
 
 Host name=localhost appBase=webapps
 Context path=/examples docBase=examples
 
 So in your case:
 
 Host name=www.domain2.com appBase=webapps
 Context path= docBase=some-folder-in-webapps-just-like-examples  
 
 Look for the root Context within the localhost Host element 
 in server.xml
 and do something similar.
 
 John
 
 
  -Original Message-
  From: Dionisio Ruiz de Zarate [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, September 05, 2002 11:18 AM
  To: [EMAIL PROTECTED]
  Subject: apache + tomcat 4.0.1 + virtual host
  
  
  Hello with this i pass the /examples petitions to the tomcat
  
  WebAppConnection conexion warp localhost:8008
  WebAppDeploy examples conexion /examples
  
  but if i have one second virtualhost (www.domain2.com) in the 
  apache virtual
  host configuration how i must  to configure for passint to 
  the tomcat the
  jsp pages in this second domain?
  thanks

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: apache + tomcat 4.0.1 + virtual host

2002-09-05 Thread Milt Epstein

On Thu, 5 Sep 2002, Turner, John wrote:

 I forgot to mention that you will have to configure your Apache
 connector for that new host name, but it looks like you are using
 mod_webapp, and I am not familiar with it.

I think if the appropriate connector configuration directives (whether
it's mod_jk or mod_webapp) are only included in the appropriate
section in the Apache config file (e.g. in the main section or in the
particular virtual host section), that should do the trick.


  -Original Message-
  From: Turner, John [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, September 05, 2002 11:30 AM
  To: 'Tomcat Users List'
  Subject: RE: apache + tomcat 4.0.1 + virtual host
 
 
  Each virtual host gets a Host element/container in server.xml.
 
  In that Host element, create a Context for the path.
 
  For example, in a default Tomcat install:
 
  Host name=localhost appBase=webapps
  Context path=/examples docBase=examples
 
  So in your case:
 
  Host name=www.domain2.com appBase=webapps
  Context path= docBase=some-folder-in-webapps-just-like-examples
 
  Look for the root Context within the localhost Host element
  in server.xml
  and do something similar.
 
  John
 
 
   -Original Message-
   From: Dionisio Ruiz de Zarate [mailto:[EMAIL PROTECTED]]
   Sent: Thursday, September 05, 2002 11:18 AM
   To: [EMAIL PROTECTED]
   Subject: apache + tomcat 4.0.1 + virtual host
  
  
   Hello with this i pass the /examples petitions to the tomcat
  
   WebAppConnection conexion warp localhost:8008
   WebAppDeploy examples conexion /examples
  
   but if i have one second virtualhost (www.domain2.com) in the
   apache virtual
   host configuration how i must  to configure for passint to
   the tomcat the
   jsp pages in this second domain?
   thanks

 --
 To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
 For additional commands, e-mail: mailto:[EMAIL PROTECTED]


Milt Epstein
Research Programmer
Systems and Technology Services (STS)
Campus Information Technologies and Educational Services (CITES)
University of Illinois at Urbana-Champaign (UIUC)
[EMAIL PROTECTED]


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




RE: Apache Tomcat/4.0.1 - HTTP Status 404 - File: wa_request.c Line: 198

2002-03-15 Thread Chris Pheby

Try:

1) Ensure Tomcat is running when you start Apache. On Windows you can do
this with Service+ (from www.activeplus.com) to establish a dependency. On
Linux maybe set Tomcat to start at an earlier runlevel (?) or restart Apache
from the end of Tomcat's start-up script. Of course before you do this,
first just try restarting Apache with Tomcat running.

2) Try removing the line WebAppDeploy tomcat conn / to see if this is
responsible for the error.

3) If using JDK 1.4 ensure you compile cocoon from source, rather than just
downloading the binary.

Hope some of this helps. Let me know.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
On Behalf Of Yunce Gunawan
Sent: 15 March 2002 09:20
To: Tomcat Users List
Subject: Apache Tomcat/4.0.1 - HTTP Status 404 - File: wa_request.c
Line: 198



 Hi there !

i installed tomcat 4.0.1 on apache_1.3.22 and my httpd.conf  like this

IfModule mod_webapp.c
  WebAppConnection conn  warp  :8080
   WebAppDeploy   tomcat  conn  /
WebAppDeploy   cocoon  conn  /cocoon
   WebAppInfo /webapp-info
/IfModule


but i have this error on my browser

WebApp: Error 404
(File: wa_request.c Line: 198)
Web-application not yet deployed

what is file wa_request.c ?

can anybody help me?

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Apache Tomcat/4.0.1 - HTTP Status 404 - File: wa_request.c Line: 198

2002-03-15 Thread Yunce Gunawan


of course i restarting Apache with Tomcat running.


 2) Try removing the line WebAppDeploy tomcat conn / to see if this is
 responsible for the error.

if i remove  the line WebAppDeploy tomcat conn / 
i have not any error, but i can just see apache server. not tomcat or cocoon 
on my browser ...

i heard that mod_webapp have bugs... it's true ..??



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: Apache Tomcat/4.0.1 - HTTP Status 404 - File: wa_request.c Line: 198

2002-03-15 Thread Chris Pheby

Thats right. But try pointing to localhost/cocoon/ or wherever you mapped it
to. That should invoke Tomcat.

You can of course map Cocoon to the server root I think also.

Chris.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
On Behalf Of Yunce Gunawan
Sent: 15 March 2002 10:41
To: Tomcat Users List
Subject: Re: Apache Tomcat/4.0.1 - HTTP Status 404 - File: wa_request.c
Line: 198



of course i restarting Apache with Tomcat running.


 2) Try removing the line WebAppDeploy tomcat conn / to see if this is
 responsible for the error.

if i remove  the line WebAppDeploy tomcat conn /
i have not any error, but i can just see apache server. not tomcat or cocoon
on my browser ...

i heard that mod_webapp have bugs... it's true ..??



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Apache Tomcat/4.0.1 - HTTP Status 404 - File: wa_request.c Line: 198

2002-03-15 Thread Yunce Gunawan

it's not worked...

and i still see apache on my browser..



On Friday 15 March 2002 12:18, you wrote:
 Thats right. But try pointing to localhost/cocoon/ or wherever you mapped
 it to. That should invoke Tomcat.

 You can of course map Cocoon to the server root I think also.

 Chris.

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Apache Tomcat 4.0.1

2001-12-05 Thread David Smith

Try using wild cards to limit what JkMount sends to TC (ie: *.jsp instead of 
*) and then use an alias in httpd.conf to your web app's directory.  You'll 
have to use a Directory  config setting to deny all from accessing WEB-INF.

Goes something like (in httpd.conf):

# Send all requests for .jsp files to TC
JkMount /examples/*.jsp ajp13

# Alias and set permission on requesting static content from the webapp
Alias /examples [your path to webapps]/examples
Directory [your path to webapps]/examples/WEB-INF
Order Allow,Deny
Deny from All
/Directory

--David

On Tuesday 04 December 2001 09:09 pm, you wrote:
 hi.
 I'm trying to my images in apache instead of Tomcat. Is it possible in this
 setting(tomcat4.01/apache1.3.22/win2k). Coz the loading time foe my
 pictures is very slow

 Lousai.Co



 Original Message Follows
 From: Mike Kelley [EMAIL PROTECTED]
 Reply-To: Tomcat Users List [EMAIL PROTECTED]
 To: 'Tomcat Users List' [EMAIL PROTECTED]
 Subject: RE: Apache  Tomcat 4.0.1
 Date: Tue, 4 Dec 2001 15:14:50 -0700

 David,

 How do you work an html page that references jsp?

 I started using mod_jk today ... I would like to see the
 /examples/jsp/index.html page but it will not load?

 -Original Message-
 From: David Smith [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, December 04, 2001 3:19 PM
 To: Tomcat Users List
 Subject: Re: Apache  Tomcat 4.0.1


 I honestly don't know if mod_webapp has better performance.  Mod_jk has
 been

 around longer has has more maturity as a connector (plus the ability to
 leave
 static content to Apache).  I've used both and never had a complaint.

 --David

 On Tuesday 04 December 2001 01:33 pm, you wrote:
   Thanks! This is good to know. One thing to consider, is the the
   web_apps module uses the the warp connector, which is suppose to have
   better performance. I have not done any benchmarking, or read about
   any. I just going off of the documentation that I have read.
  
   David Smith wrote:
Yes, mod_jk does work with TC 4.0.1.  I would download the binary
for TC 3.3 and use the mod_jk in that dist.  The docs that come with
TC 3.3 don't really apply to TC 4.0.1 though.  Instead, check the
server.xml in TC 4.0.1 for instructions around the entry for the AJP
13 connector.  The Apache httpd.conf directives are the same though.
   
--David
   
On Tuesday 04 December 2001 12:45 pm, you wrote:
 Can you not use mod_jk with Tomcat 4.0.1?

 -Original Message-
 From: Denny Chambers [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, December 04, 2001 12:16 PM
 To: Tomcat Users List
 Subject: Re: Apache  Tomcat 4.0.1


 For Tomcat 4.0 you need mod_webapp.so

 Markus Baertschi wrote:
  Hello,
 
  I've got an application, actually running on a standalone tomcat
  3.2.4

 server

  which I want to put in production with tomcat 4.0.1 and apache
  1.3.22. I

 am on

  AIX 4.3 and use the IBM binary apache distribution ('IBM http
  server').
 
  I've studied the tomcat-apache howto and concluded I need
  mod_jk. My

 apache binary

  has DSO and I think it has EAPI as well (it supports ssl). But
  further-on

 it looks

  like the HOWTO is (no longer ?) correct:
 
  The howto states that mod_jk sources are found in the binary
  distribution

 of tomcat

  in $TOMCAT_HOME/native/mod_jk/apache1.3. but in the tomcat 4.0.1

 distributions

  (bin  source) there is no mod_jk.
 
  - Should I just take the mod_jk which came with tomcat 3.2.4 ?
  - Is there a better solution for tomcat 4.0.1 and apache 1.3.x ?
  - Who should I contact to update the HOWTO ?
 
  Thanks  Markus
 
  --
Markus Baertschi Phone: ++41 (21) 807 1677
Bas du Rossé 12  Fax  : ++41 (21) 807 1678
CH-1163, EtoyEmail: [EMAIL PROTECTED]
Switzerland  Homepage: www.markus.org
 
  --
  To unsubscribe:

 mailto:[EMAIL PROTECTED]

  For additional commands:
  mailto:[EMAIL PROTECTED]
  Troubles with the list:

 mailto:[EMAIL PROTECTED]

 --
 Denny Chambers
 Quantum Corporation, Inc.
 Network Attached Storage Division
 Java Linux Engineer
 Phone: 334-478-5730
 IM: [EMAIL PROTECTED]


 --
 To unsubscribe:  
 mailto:[EMAIL PROTECTED] For additional
 commands:
 mailto:[EMAIL PROTECTED]
 Troubles with the list:
 mailto:[EMAIL PROTECTED]
   
--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands:
mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]

 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]

 --
 To unsubscribe:   mailto:[EMAIL PROTECTED

Re: Apache Tomcat 4.0.1

2001-12-04 Thread Denny Chambers

For Tomcat 4.0 you need mod_webapp.so

Markus Baertschi wrote:
 
 Hello,
 
 I've got an application, actually running on a standalone tomcat 3.2.4 server
 which I want to put in production with tomcat 4.0.1 and apache 1.3.22. I am on
 AIX 4.3 and use the IBM binary apache distribution ('IBM http server').
 
 I've studied the tomcat-apache howto and concluded I need mod_jk. My apache binary
 has DSO and I think it has EAPI as well (it supports ssl). But further-on it looks
 like the HOWTO is (no longer ?) correct:
 
 The howto states that mod_jk sources are found in the binary distribution of tomcat
 in $TOMCAT_HOME/native/mod_jk/apache1.3. but in the tomcat 4.0.1 distributions
 (bin  source) there is no mod_jk.
 
 - Should I just take the mod_jk which came with tomcat 3.2.4 ?
 - Is there a better solution for tomcat 4.0.1 and apache 1.3.x ?
 - Who should I contact to update the HOWTO ?
 
 Thanks  Markus
 
 --
   Markus Baertschi Phone: ++41 (21) 807 1677
   Bas du Rossé 12  Fax  : ++41 (21) 807 1678
   CH-1163, EtoyEmail: [EMAIL PROTECTED]
   Switzerland  Homepage: www.markus.org
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]

-- 
Denny Chambers
Quantum Corporation, Inc.
Network Attached Storage Division
Java Linux Engineer
Phone: 334-478-5730
IM: [EMAIL PROTECTED]

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: Apache Tomcat 4.0.1

2001-12-04 Thread Andy Zeneski


Can you not use mod_jk with Tomcat 4.0.1?

-Original Message-
From: Denny Chambers [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 04, 2001 12:16 PM
To: Tomcat Users List
Subject: Re: Apache  Tomcat 4.0.1


For Tomcat 4.0 you need mod_webapp.so

Markus Baertschi wrote:

 Hello,

 I've got an application, actually running on a standalone tomcat 3.2.4
server
 which I want to put in production with tomcat 4.0.1 and apache 1.3.22. I
am on
 AIX 4.3 and use the IBM binary apache distribution ('IBM http server').

 I've studied the tomcat-apache howto and concluded I need mod_jk. My
apache binary
 has DSO and I think it has EAPI as well (it supports ssl). But further-on
it looks
 like the HOWTO is (no longer ?) correct:

 The howto states that mod_jk sources are found in the binary distribution
of tomcat
 in $TOMCAT_HOME/native/mod_jk/apache1.3. but in the tomcat 4.0.1
distributions
 (bin  source) there is no mod_jk.

 - Should I just take the mod_jk which came with tomcat 3.2.4 ?
 - Is there a better solution for tomcat 4.0.1 and apache 1.3.x ?
 - Who should I contact to update the HOWTO ?

 Thanks  Markus

 --
   Markus Baertschi Phone: ++41 (21) 807 1677
   Bas du Rossé 12  Fax  : ++41 (21) 807 1678
   CH-1163, EtoyEmail: [EMAIL PROTECTED]
   Switzerland  Homepage: www.markus.org

 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]

--
Denny Chambers
Quantum Corporation, Inc.
Network Attached Storage Division
Java Linux Engineer
Phone: 334-478-5730
IM: [EMAIL PROTECTED]


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Apache Tomcat 4.0.1

2001-12-04 Thread Denny Chambers

I don't think so. When I made the switch from TC 3 to TC 4, everthing
that I read at the time, pointed me to the Web Apps module. I could be
wrong.

Andy Zeneski wrote:
 
 Can you not use mod_jk with Tomcat 4.0.1?
 
 -Original Message-
 From: Denny Chambers [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, December 04, 2001 12:16 PM
 To: Tomcat Users List
 Subject: Re: Apache  Tomcat 4.0.1
 
 For Tomcat 4.0 you need mod_webapp.so
 
 Markus Baertschi wrote:
 
  Hello,
 
  I've got an application, actually running on a standalone tomcat 3.2.4
 server
  which I want to put in production with tomcat 4.0.1 and apache 1.3.22. I
 am on
  AIX 4.3 and use the IBM binary apache distribution ('IBM http server').
 
  I've studied the tomcat-apache howto and concluded I need mod_jk. My
 apache binary
  has DSO and I think it has EAPI as well (it supports ssl). But further-on
 it looks
  like the HOWTO is (no longer ?) correct:
 
  The howto states that mod_jk sources are found in the binary distribution
 of tomcat
  in $TOMCAT_HOME/native/mod_jk/apache1.3. but in the tomcat 4.0.1
 distributions
  (bin  source) there is no mod_jk.
 
  - Should I just take the mod_jk which came with tomcat 3.2.4 ?
  - Is there a better solution for tomcat 4.0.1 and apache 1.3.x ?
  - Who should I contact to update the HOWTO ?
 
  Thanks  Markus
 
  --
Markus Baertschi Phone: ++41 (21) 807 1677
Bas du Rossé 12  Fax  : ++41 (21) 807 1678
CH-1163, EtoyEmail: [EMAIL PROTECTED]
Switzerland  Homepage: www.markus.org
 
  --
  To unsubscribe:   mailto:[EMAIL PROTECTED]
  For additional commands: mailto:[EMAIL PROTECTED]
  Troubles with the list: mailto:[EMAIL PROTECTED]
 
 --
 Denny Chambers
 Quantum Corporation, Inc.
 Network Attached Storage Division
 Java Linux Engineer
 Phone: 334-478-5730
 IM: [EMAIL PROTECTED]
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]

-- 
Denny Chambers
Quantum Corporation, Inc.
Network Attached Storage Division
Java Linux Engineer
Phone: 334-478-5730
IM: [EMAIL PROTECTED]

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Apache Tomcat 4.0.1

2001-12-04 Thread David Smith

Yes, mod_jk does work with TC 4.0.1.  I would download the binary for TC 3.3 
and use the mod_jk in that dist.  The docs that come with TC 3.3 don't really 
apply to TC 4.0.1 though.  Instead, check the server.xml in TC 4.0.1 for 
instructions around the entry for the AJP 13 connector.  The Apache 
httpd.conf directives are the same though.

--David

On Tuesday 04 December 2001 12:45 pm, you wrote:
 Can you not use mod_jk with Tomcat 4.0.1?

 -Original Message-
 From: Denny Chambers [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, December 04, 2001 12:16 PM
 To: Tomcat Users List
 Subject: Re: Apache  Tomcat 4.0.1


 For Tomcat 4.0 you need mod_webapp.so

 Markus Baertschi wrote:
  Hello,
 
  I've got an application, actually running on a standalone tomcat 3.2.4

 server

  which I want to put in production with tomcat 4.0.1 and apache 1.3.22. I

 am on

  AIX 4.3 and use the IBM binary apache distribution ('IBM http server').
 
  I've studied the tomcat-apache howto and concluded I need mod_jk. My

 apache binary

  has DSO and I think it has EAPI as well (it supports ssl). But further-on

 it looks

  like the HOWTO is (no longer ?) correct:
 
  The howto states that mod_jk sources are found in the binary distribution

 of tomcat

  in $TOMCAT_HOME/native/mod_jk/apache1.3. but in the tomcat 4.0.1

 distributions

  (bin  source) there is no mod_jk.
 
  - Should I just take the mod_jk which came with tomcat 3.2.4 ?
  - Is there a better solution for tomcat 4.0.1 and apache 1.3.x ?
  - Who should I contact to update the HOWTO ?
 
  Thanks  Markus
 
  --
Markus Baertschi Phone: ++41 (21) 807 1677
Bas du Rossé 12  Fax  : ++41 (21) 807 1678
CH-1163, EtoyEmail: [EMAIL PROTECTED]
Switzerland  Homepage: www.markus.org
 
  --
  To unsubscribe:   mailto:[EMAIL PROTECTED]
  For additional commands: mailto:[EMAIL PROTECTED]
  Troubles with the list: mailto:[EMAIL PROTECTED]

 --
 Denny Chambers
 Quantum Corporation, Inc.
 Network Attached Storage Division
 Java Linux Engineer
 Phone: 334-478-5730
 IM: [EMAIL PROTECTED]


 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Apache Tomcat 4.0.1

2001-12-04 Thread Denny Chambers

Thanks! This is good to know. One thing to consider, is the the web_apps
module uses the the warp connector, which is suppose to have better
performance. I have not done any benchmarking, or read about any. I just
going off of the documentation that I have read.

David Smith wrote:
 
 Yes, mod_jk does work with TC 4.0.1.  I would download the binary for TC 3.3
 and use the mod_jk in that dist.  The docs that come with TC 3.3 don't really
 apply to TC 4.0.1 though.  Instead, check the server.xml in TC 4.0.1 for
 instructions around the entry for the AJP 13 connector.  The Apache
 httpd.conf directives are the same though.
 
 --David
 
 On Tuesday 04 December 2001 12:45 pm, you wrote:
  Can you not use mod_jk with Tomcat 4.0.1?
 
  -Original Message-
  From: Denny Chambers [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, December 04, 2001 12:16 PM
  To: Tomcat Users List
  Subject: Re: Apache  Tomcat 4.0.1
 
 
  For Tomcat 4.0 you need mod_webapp.so
 
  Markus Baertschi wrote:
   Hello,
  
   I've got an application, actually running on a standalone tomcat 3.2.4
 
  server
 
   which I want to put in production with tomcat 4.0.1 and apache 1.3.22. I
 
  am on
 
   AIX 4.3 and use the IBM binary apache distribution ('IBM http server').
  
   I've studied the tomcat-apache howto and concluded I need mod_jk. My
 
  apache binary
 
   has DSO and I think it has EAPI as well (it supports ssl). But further-on
 
  it looks
 
   like the HOWTO is (no longer ?) correct:
  
   The howto states that mod_jk sources are found in the binary distribution
 
  of tomcat
 
   in $TOMCAT_HOME/native/mod_jk/apache1.3. but in the tomcat 4.0.1
 
  distributions
 
   (bin  source) there is no mod_jk.
  
   - Should I just take the mod_jk which came with tomcat 3.2.4 ?
   - Is there a better solution for tomcat 4.0.1 and apache 1.3.x ?
   - Who should I contact to update the HOWTO ?
  
   Thanks  Markus
  
   --
 Markus Baertschi Phone: ++41 (21) 807 1677
 Bas du Rossé 12  Fax  : ++41 (21) 807 1678
 CH-1163, EtoyEmail: [EMAIL PROTECTED]
 Switzerland  Homepage: www.markus.org
  
   --
   To unsubscribe:   mailto:[EMAIL PROTECTED]
   For additional commands: mailto:[EMAIL PROTECTED]
   Troubles with the list: mailto:[EMAIL PROTECTED]
 
  --
  Denny Chambers
  Quantum Corporation, Inc.
  Network Attached Storage Division
  Java Linux Engineer
  Phone: 334-478-5730
  IM: [EMAIL PROTECTED]
 
 
  --
  To unsubscribe:   mailto:[EMAIL PROTECTED]
  For additional commands: mailto:[EMAIL PROTECTED]
  Troubles with the list: mailto:[EMAIL PROTECTED]
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]

-- 
Denny Chambers
Quantum Corporation, Inc.
Network Attached Storage Division
Java Linux Engineer
Phone: 334-478-5730
IM: [EMAIL PROTECTED]

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Apache Tomcat 4.0.1

2001-12-04 Thread Brian Baxter

Actually, you can use mod_jk with Tomcat4.0.1 -- it was Tomcat v4.0 which
did not support mod_jk. What you do need to watch is whether you are
attaching Apache to an ajp12 or an apj13 connector. The preferred method is
mod_webapp of course. In any event you can get the latest sources for
either connector from the CVS tree.


At 11:16 AM 12/4/2001 -0600, you wrote:
For Tomcat 4.0 you need mod_webapp.so

Markus Baertschi wrote:
 
 Hello,
 
 I've got an application, actually running on a standalone tomcat 3.2.4
server
 which I want to put in production with tomcat 4.0.1 and apache 1.3.22. I
am on
 AIX 4.3 and use the IBM binary apache distribution ('IBM http server').
 
 I've studied the tomcat-apache howto and concluded I need mod_jk. My
apache binary
 has DSO and I think it has EAPI as well (it supports ssl). But
further-on it looks
 like the HOWTO is (no longer ?) correct:
 
 The howto states that mod_jk sources are found in the binary
distribution of tomcat
 in $TOMCAT_HOME/native/mod_jk/apache1.3. but in the tomcat 4.0.1
distributions
 (bin  source) there is no mod_jk.
 
 - Should I just take the mod_jk which came with tomcat 3.2.4 ?
 - Is there a better solution for tomcat 4.0.1 and apache 1.3.x ?
 - Who should I contact to update the HOWTO ?
 
 Thanks  Markus
 
 --
   Markus Baertschi Phone: ++41 (21) 807 1677
   Bas du Rossé 12  Fax  : ++41 (21) 807 1678
   CH-1163, EtoyEmail: [EMAIL PROTECTED]
   Switzerland  Homepage: www.markus.org
 
 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]

-- 
Denny Chambers
Quantum Corporation, Inc.
Network Attached Storage Division
Java Linux Engineer
Phone: 334-478-5730
IM: [EMAIL PROTECTED]

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]

___
tomcat-users mailing list
[EMAIL PROTECTED]
https://mailman.real-time.com/mailman/listinfo/tomcat-users




--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Apache Tomcat 4.0.1

2001-12-04 Thread David Smith

I honestly don't know if mod_webapp has better performance.  Mod_jk has been 
around longer has has more maturity as a connector (plus the ability to leave 
static content to Apache).  I've used both and never had a complaint.

--David

On Tuesday 04 December 2001 01:33 pm, you wrote:
 Thanks! This is good to know. One thing to consider, is the the web_apps
 module uses the the warp connector, which is suppose to have better
 performance. I have not done any benchmarking, or read about any. I just
 going off of the documentation that I have read.

 David Smith wrote:
  Yes, mod_jk does work with TC 4.0.1.  I would download the binary for TC
  3.3 and use the mod_jk in that dist.  The docs that come with TC 3.3
  don't really apply to TC 4.0.1 though.  Instead, check the server.xml in
  TC 4.0.1 for instructions around the entry for the AJP 13 connector.  The
  Apache httpd.conf directives are the same though.
 
  --David
 
  On Tuesday 04 December 2001 12:45 pm, you wrote:
   Can you not use mod_jk with Tomcat 4.0.1?
  
   -Original Message-
   From: Denny Chambers [mailto:[EMAIL PROTECTED]]
   Sent: Tuesday, December 04, 2001 12:16 PM
   To: Tomcat Users List
   Subject: Re: Apache  Tomcat 4.0.1
  
  
   For Tomcat 4.0 you need mod_webapp.so
  
   Markus Baertschi wrote:
Hello,
   
I've got an application, actually running on a standalone tomcat
3.2.4
  
   server
  
which I want to put in production with tomcat 4.0.1 and apache
1.3.22. I
  
   am on
  
AIX 4.3 and use the IBM binary apache distribution ('IBM http
server').
   
I've studied the tomcat-apache howto and concluded I need mod_jk. My
  
   apache binary
  
has DSO and I think it has EAPI as well (it supports ssl). But
further-on
  
   it looks
  
like the HOWTO is (no longer ?) correct:
   
The howto states that mod_jk sources are found in the binary
distribution
  
   of tomcat
  
in $TOMCAT_HOME/native/mod_jk/apache1.3. but in the tomcat 4.0.1
  
   distributions
  
(bin  source) there is no mod_jk.
   
- Should I just take the mod_jk which came with tomcat 3.2.4 ?
- Is there a better solution for tomcat 4.0.1 and apache 1.3.x ?
- Who should I contact to update the HOWTO ?
   
Thanks  Markus
   
--
  Markus Baertschi Phone: ++41 (21) 807 1677
  Bas du Rossé 12  Fax  : ++41 (21) 807 1678
  CH-1163, EtoyEmail: [EMAIL PROTECTED]
  Switzerland  Homepage: www.markus.org
   
--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]
  
   --
   Denny Chambers
   Quantum Corporation, Inc.
   Network Attached Storage Division
   Java Linux Engineer
   Phone: 334-478-5730
   IM: [EMAIL PROTECTED]
  
  
   --
   To unsubscribe:   mailto:[EMAIL PROTECTED]
   For additional commands: mailto:[EMAIL PROTECTED]
   Troubles with the list: mailto:[EMAIL PROTECTED]
 
  --
  To unsubscribe:   mailto:[EMAIL PROTECTED]
  For additional commands: mailto:[EMAIL PROTECTED]
  Troubles with the list: mailto:[EMAIL PROTECTED]


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




RE: Apache Tomcat 4.0.1

2001-12-04 Thread KOK LEONG LOW

hi.
I'm trying to my images in apache instead of Tomcat. Is it possible in this 
setting(tomcat4.01/apache1.3.22/win2k). Coz the loading time foe my pictures 
is very slow

Lousai.Co



Original Message Follows
From: Mike Kelley [EMAIL PROTECTED]
Reply-To: Tomcat Users List [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Subject: RE: Apache  Tomcat 4.0.1
Date: Tue, 4 Dec 2001 15:14:50 -0700

David,

How do you work an html page that references jsp?

I started using mod_jk today ... I would like to see the
/examples/jsp/index.html page but it will not load?

-Original Message-
From: David Smith [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 04, 2001 3:19 PM
To: Tomcat Users List
Subject: Re: Apache  Tomcat 4.0.1


I honestly don't know if mod_webapp has better performance.  Mod_jk has been

around longer has has more maturity as a connector (plus the ability to
leave
static content to Apache).  I've used both and never had a complaint.

--David

On Tuesday 04 December 2001 01:33 pm, you wrote:
  Thanks! This is good to know. One thing to consider, is the the
  web_apps module uses the the warp connector, which is suppose to have
  better performance. I have not done any benchmarking, or read about
  any. I just going off of the documentation that I have read.
 
  David Smith wrote:
   Yes, mod_jk does work with TC 4.0.1.  I would download the binary
   for TC 3.3 and use the mod_jk in that dist.  The docs that come with
   TC 3.3 don't really apply to TC 4.0.1 though.  Instead, check the
   server.xml in TC 4.0.1 for instructions around the entry for the AJP
   13 connector.  The Apache httpd.conf directives are the same though.
  
   --David
  
   On Tuesday 04 December 2001 12:45 pm, you wrote:
Can you not use mod_jk with Tomcat 4.0.1?
   
-Original Message-
From: Denny Chambers [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 04, 2001 12:16 PM
To: Tomcat Users List
Subject: Re: Apache  Tomcat 4.0.1
   
   
For Tomcat 4.0 you need mod_webapp.so
   
Markus Baertschi wrote:
 Hello,

 I've got an application, actually running on a standalone tomcat
 3.2.4
   
server
   
 which I want to put in production with tomcat 4.0.1 and apache
 1.3.22. I
   
am on
   
 AIX 4.3 and use the IBM binary apache distribution ('IBM http
 server').

 I've studied the tomcat-apache howto and concluded I need
 mod_jk. My
   
apache binary
   
 has DSO and I think it has EAPI as well (it supports ssl). But
 further-on
   
it looks
   
 like the HOWTO is (no longer ?) correct:

 The howto states that mod_jk sources are found in the binary
 distribution
   
of tomcat
   
 in $TOMCAT_HOME/native/mod_jk/apache1.3. but in the tomcat 4.0.1
   
distributions
   
 (bin  source) there is no mod_jk.

 - Should I just take the mod_jk which came with tomcat 3.2.4 ?
 - Is there a better solution for tomcat 4.0.1 and apache 1.3.x ?
 - Who should I contact to update the HOWTO ?

 Thanks  Markus

 --
   Markus Baertschi Phone: ++41 (21) 807 1677
   Bas du Rossé 12  Fax  : ++41 (21) 807 1678
   CH-1163, EtoyEmail: [EMAIL PROTECTED]
   Switzerland  Homepage: www.markus.org

 --
 To unsubscribe:
mailto:[EMAIL PROTECTED]
 For additional commands:
 mailto:[EMAIL PROTECTED]
 Troubles with the list:
mailto:[EMAIL PROTECTED]
   
--
Denny Chambers
Quantum Corporation, Inc.
Network Attached Storage Division
Java Linux Engineer
Phone: 334-478-5730
IM: [EMAIL PROTECTED]
   
   
--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands:
mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]
  
   --
   To unsubscribe:   mailto:[EMAIL PROTECTED]
   For additional commands:
   mailto:[EMAIL PROTECTED]
   Troubles with the list: mailto:[EMAIL PROTECTED]


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]



_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]