RE: Trouble connecting Apache 1.3 & Tomcat 4 w/ mod_webApp for window NT

2001-11-16 Thread Geoff Howard

Try turning off image display in your browser preferences.  If the pages
then work, the problem is an unresolved one with mod_webpp.  You can search
the archive for "nightly snapshot" and you should find a link to the latest
version of the source, which may have fixed this by now, but the last time I
tried the same problem persisted.  This problem is apparently not universal,
since a coworker is using the same conf files and build of tomcat, apache,
and mod_webapp on his machine and things work smoothly.  

Geoff

-Original Message-
From: Lin, Zhongwu [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 15, 2001 10:41 PM
To: 'Tomcat Users List'
Subject: Trouble connecting Apache 1.3 & Tomcat 4 w/ mod_webApp for
window NT


I can't make Apache 1.3 & Tomcat 4 w/ mod_webApp to work.

This is what I do(follow install guide):

1) copy mod_webapp.so and libapr.dll to directory
\modules   
2)edit httpd.conf like this

ServerName localhost  
LoadModule webapp_module modules/mod_webapp.so

WebAppConnection conn warp localhost:8008
WebAppDeploy examples conn /examples

3) my  tomcat 4 has server.xml like this:

 
  






  
  

  
  



  

4) start tomcat 4 and then apache, I can see apache home on port 80 and
tomcat home on port 8080 like this
http://localhost/
http://localhost:8080
http://localhost:8080/examples

but the following 
http://localhost/examples

give me error of "page not found"


any idea why


any help would be greatly appreciated


John








> -Original Message-
> From: David Smith [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, November 15, 2001 4:04 PM
> To:   Tomcat Users List
> Subject:  Re: Trouble connecting Apache 1.3 & Tomcat 4 w/ mod_webApp
> 
> I'm guessing you changed the port for the Connector statement in the 
> Tomcat-Apache service of server.xml to 9090?  If so, that's correct.  If
> not, 
> try using 8008 instead.  
> 
> The second WebAppConnection line isn't needed unless it's connecting to a 
> different machine and/or port.  The way your config is below, there should
> 
> only be one with both WebAppDeploy lines referencing it.  This might be
> the 
> source of your error.
> 
> Good luck and hope this helps some.
> 
> --David Smith
> 
> On Thursday 15 November 2001 12:09 pm, you wrote:
> > FreeBSD, Tomcat 4, Apache 1.3.19
> >
> >
> > Here's my config;
> >
> > Alias /myapp "/usr/local/jakarta-tomcat-4.0/webapps/myapp/"
> > WebAppConnection tomcat4  warp  localhost:9090
> > WebAppDeploy myapp  tomcat4  /myapp
> > WebAppConnection conn  warp  localhost:9090
> > WebAppDeploy examples  conn  /examples
> >
> >
> > Here's the result from the apache error log;
> >
> > [Thu Nov 15 10:40:00 2001] [error] Cannot receive handshake WARP packet
> > [Thu Nov 15 10:40:00 2001] [error] Cannot read packet
> > (pr_warp_config.c:139) [Thu Nov 15 10:40:00 2001] [error] Cannot
> configure
> > connection "tomcat4" [Thu Nov 15 10:40:00 2001] [error] Cannot receive
> > handshake WARP packet [Thu Nov 15 10:40:00 2001] [error] Cannot read
> packet
> > (pr_warp_config.c:139) [Thu Nov 15 10:40:00 2001] [error] Cannot
> configure
> > connection "tomcat4"
> >
> > Might this be an error with compiling?
> >
> >
> >
> >
> > --
> > 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: Trouble connecting Apache 1.3 & Tomcat 4 w/ mod_webApp

2001-11-15 Thread David Smith

I'm guessing you changed the port for the Connector statement in the 
Tomcat-Apache service of server.xml to 9090?  If so, that's correct.  If not, 
try using 8008 instead.  

The second WebAppConnection line isn't needed unless it's connecting to a 
different machine and/or port.  The way your config is below, there should 
only be one with both WebAppDeploy lines referencing it.  This might be the 
source of your error.

Good luck and hope this helps some.

--David Smith

On Thursday 15 November 2001 12:09 pm, you wrote:
> FreeBSD, Tomcat 4, Apache 1.3.19
>
>
> Here's my config;
>
> Alias /myapp "/usr/local/jakarta-tomcat-4.0/webapps/myapp/"
> WebAppConnection tomcat4  warp  localhost:9090
> WebAppDeploy myapp  tomcat4  /myapp
> WebAppConnection conn  warp  localhost:9090
> WebAppDeploy examples  conn  /examples
>
>
> Here's the result from the apache error log;
>
> [Thu Nov 15 10:40:00 2001] [error] Cannot receive handshake WARP packet
> [Thu Nov 15 10:40:00 2001] [error] Cannot read packet
> (pr_warp_config.c:139) [Thu Nov 15 10:40:00 2001] [error] Cannot configure
> connection "tomcat4" [Thu Nov 15 10:40:00 2001] [error] Cannot receive
> handshake WARP packet [Thu Nov 15 10:40:00 2001] [error] Cannot read packet
> (pr_warp_config.c:139) [Thu Nov 15 10:40:00 2001] [error] Cannot configure
> connection "tomcat4"
>
> Might this be an error with compiling?
>
>
>
>
> --
> To unsubscribe:   
> For additional commands: 
> Troubles with the list: 


--
To unsubscribe:   
For additional commands: 
Troubles with the list: 




RE: Trouble connecting Apache 1.3 & Tomcat 4 w/ mod_webApp

2001-11-15 Thread Suzanne Reiner 8423


Alias /myapp "/usr/local/jakarta-tomcat-4.0/webapps/myapp/"\

What is the appBase (for the Apache-Tomcat service) specified in the Tomcat server.xml 
file?

WebAppConnection tomcat4  warp  localhost:9090
WebAppConnection warpConnection warp localhost:9090

WebAppDeploy myapp  tomcat4  /myapp
WebAppDeploy myapp warpConnection  /myapp

WebAppConnection   warp  localhost:9090
... is this a different appBase (defined in tomcat's server.xml) than the first 
connection?

WebAppDeploy examples  conn  /examples
WebAppDeploy examples warpConnection /examples





msg37085/bin0.bin
Description: application/ms-tnef

--
To unsubscribe:   
For additional commands: 
Troubles with the list: