RE: Warp connections

2002-10-04 Thread Larsson, Mickael

It does.. Andy..to a point Thanks
 
But.. :)  What i am trying to do..is to let the connector.. just serve the
*.jsp and servlets from /myapp  if there where .jpg .gif .html and so on..
in there tomcat..would also serve that..  And that ..is what i dont want at
all..
 
I am thinkin of the performance of the website,  so to manage this i would
have to have the static content.. at another place on the server this makes
things more conplicated.. 
:(
 
 
Regards
Siggi
 
 

-Original Message- 
From: Andy Eastham [mailto:[EMAIL PROTECTED]] 
Sent: þri. 1.10.2002 12:52 
To: Tomcat Users List 
Cc: 
Subject: RE: Warp connections


Siggi,
 
What this means is that if you map, for example, /myapp to Tomcat, Tomcat
will serve all content under /myapp.  You cannot get Apache to serve
/myapp/my.jpg.
 
Apache will still serve things that aren't under /myapp, so /index.html,
/images/my.jpg etc _will_ be served by Apache.
 
Does this clarify the situation?
 
All the best,
 
Andy

-Original Message-
From: Sigurður Bjarnason [mailto:[EMAIL PROTECTED]]
Sent: 01 October 2002 13:45
To: Tomcat Users List
Subject: RE: Warp connections


Ok.. So what is the use of the connector then ?!?!?!?
 
If not to let Tomcat serve the Jsp and Servlets.. witch it is supposed to
do. ?!?
 
This makes no sense at all to have this connector then.. ... If Tomcat ends
up serving all the content !  Then it would just be better to leave out
Apache to save cpu and so on !..
 
This has to be misunderstanding !.. From my point of view, if the connector
cannot do this.. I just Get rid of Apache and let Tomcat do all the work..
witch is does.. anyway if I use Warp..
 
 
regards 
Siggi
 

-Original Message- 
From: Jim Coble [mailto:[EMAIL PROTECTED]] 
Sent: lau. 28.9.2002 17:10 
To: Tomcat Users List 
Cc: 
Subject: Re: Warp connections 





Someone with more experience may have a better answer but it is my
understanding that mod_webapp does not permit you to distinguish between
static and dynamic content.  When you use mod_webapp, Tomcat services all
requests; i.e., you can't do what you want to do--serve html with Apache
and jsp/servlets with Tomcat--using mod_webapp -- you would have to
continue using mod_jk if that's what you want to do.
--Jim

==
Jim Coble
Senior Technology Specialist
Center for Instructional Technology
Email: [EMAIL PROTECTED]
Voice: 919-660-5974  Fax: 919-660-5923
Box 90198, Duke University
Durham, NC 27708-0198
==



 

  Sigurður

  BjarnasonTo:   Tomcat Users List
[EMAIL PROTECTED] 
  [EMAIL PROTECTED]cc:

  m   Subject:  Warp connections

 

  09/28/2002 12:17

  PM

  Please respond to

  Tomcat Users

  List

 

 





[Message truncated]


This message contains information that may be privileged or confidential and is the 
property of the Cap Gemini Ernst  Young Group. It is intended only for the person to 
whom it is addressed. If you are not the intended recipient, you are not authorized to 
read, print, retain, copy, disseminate, distribute, or use this message or any part 
thereof. If you receive this message in error, please notify the sender immediately 
and delete all copies of this message.


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




RE: Warp connections

2002-10-01 Thread Sigurur Bjarnason

Ok.. So what is the use of the connector then ?!?!?!?
 
If not to let Tomcat serve the Jsp and Servlets.. witch it is supposed to do. ?!?
 
This makes no sense at all to have this connector then.. ... If Tomcat ends up serving 
all the content !  Then it would just be better to leave out Apache to save cpu and so 
on !..
 
This has to be misunderstanding !.. From my point of view, if the connector cannot do 
this.. I just Get rid of Apache and let Tomcat do all the work.. witch is does.. 
anyway if I use Warp..
 
 
regards 
Siggi
 

-Original Message- 
From: Jim Coble [mailto:[EMAIL PROTECTED]] 
Sent: lau. 28.9.2002 17:10 
To: Tomcat Users List 
Cc: 
Subject: Re: Warp connections 





Someone with more experience may have a better answer but it is my
understanding that mod_webapp does not permit you to distinguish between
static and dynamic content.  When you use mod_webapp, Tomcat services all
requests; i.e., you can't do what you want to do--serve html with Apache
and jsp/servlets with Tomcat--using mod_webapp -- you would have to
continue using mod_jk if that's what you want to do.
--Jim

==
Jim Coble
Senior Technology Specialist
Center for Instructional Technology
Email: [EMAIL PROTECTED]
Voice: 919-660-5974  Fax: 919-660-5923
Box 90198, Duke University
Durham, NC 27708-0198
==



   
   
  Sigurður 
   
  BjarnasonTo:   Tomcat Users List 
[EMAIL PROTECTED] 
  [EMAIL PROTECTED]cc: 
   
  m   Subject:  Warp connections  
   
   
   
  09/28/2002 12:17 
   
  PM   
   
  Please respond to
   
  Tomcat Users
   
  List
   
   
   
   
   





Hi all..

I want to use the mod_webapp module for apache to connect it to tomcat.. I
have one question about this

The thing is.. i want apache to serve all static content.. like html and
let tomcat handle the jsp and servlets.

Now when i use the apj1.2 connector with mod_jk.so i use line like

JkMount /TESTSUITE/servlet/* ajp12
JkMount /TESTSUITE/*.jsp ajp12

when i use the mod_webapp.. i use lines like as follows

 WebAppDeploy examplesconn  /examples

..that is here that i have a problem !  how can i exclude the jsp
pages... with this. ?!

i have tryed to use

 WebAppDeploy examplesconn  /examples/*.jsp

But that have not worked for me.. so if someone out there have the answer..
i would be greatful ! :)

Regards
Siggi






(See attached file: winmail.dat)--
To unsubscribe, e-mail:   
mailto:[EMAIL PROTECTED]
For additional commands, e-mail: 
mailto:[EMAIL PROTECTED]





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


RE: Warp connections

2002-10-01 Thread Andy Eastham
Title: Re: Warp connections



Siggi,

What 
this means is that if you map, for example, /myapp to Tomcat, Tomcat will serve 
all content under /myapp. You cannot get Apache to serve 
/myapp/my.jpg.

Apache 
will still serve things that aren't under /myapp, so /index.html, /images/my.jpg 
etc _will_ be served by Apache.

Does 
this clarify the situation?

All 
the best,

Andy

  -Original Message-From: Sigurður Bjarnason 
  [mailto:[EMAIL PROTECTED]]Sent: 01 October 2002 13:45To: 
  Tomcat Users ListSubject: RE: Warp connections
  Ok.. So what is the use of the connector then ?!?!?!?
  
  If not to let Tomcat serve the Jsp and Servlets.. witch it is supposed to 
  do. ?!?
  
  This makes no sense at all to have this connector then.. ... If Tomcat 
  ends up serving all the content ! Then it would just be better to leave 
  out Apache to save cpu and so on !..
  
  This has to be misunderstanding !.. From my point of view, if the 
  connector cannot do this.. I just Get rid of Apache and let Tomcat do all the 
  work.. witch is does.. anyway if I use Warp..
  
  
  regards 
  Siggi
  
  
-Original Message- From: Jim Coble 
[mailto:[EMAIL PROTECTED]] Sent: lau. 28.9.2002 17:10 
To: Tomcat Users List Cc: Subject: Re: Warp 
connections 
Someone with more experience may have a better answer but it 
is myunderstanding that mod_webapp does not permit you to distinguish 
betweenstatic and dynamic content. When you use mod_webapp, Tomcat 
services allrequests; i.e., you can't do what you want to do--serve html 
with Apacheand jsp/servlets with Tomcat--using mod_webapp -- you would 
have tocontinue using mod_jk if that's what you want to 
do.--Jim==Jim 
CobleSenior Technology SpecialistCenter for Instructional 
TechnologyEmail: [EMAIL PROTECTED]Voice: 919-660-5974 Fax: 
919-660-5923Box 90198, Duke UniversityDurham, NC 
27708-0198== 
Sigurður 
Bjarnason 
To: "Tomcat Users List" 
[EMAIL PROTECTED] 
[EMAIL PROTECTED] 
cc: 
m 
    Subject: Warp 
connections 
09/28/2002 
12:17 
PM 
Please respond 
to 
"Tomcat 
Users 
List"Hi 
all..I want to use the mod_webapp module for apache to connect it to 
tomcat.. Ihave one question about thisThe thing is.. i want 
apache to serve all static content.. like html andlet tomcat handle the 
jsp and servlets.Now when i use the apj1.2 connector with mod_jk.so 
i use line likeJkMount /TESTSUITE/servlet/* ajp12JkMount 
/TESTSUITE/*.jsp ajp12when i use the mod_webapp.. i use lines like 
as followsWebAppDeploy 
examples conn /examples..that is here 
that i have a problem ! how can i exclude the jsppages... with 
this. ?!i have tryed to 
useWebAppDeploy 
examples conn /examples/*.jspBut that have 
not worked for me.. so if someone out there have the answer..i would be 
greatful ! :)RegardsSiggi(See 
attached file: winmail.dat)--To unsubscribe, e-mail: 
mailto:[EMAIL PROTECTED]For 
additional commands, e-mail: mailto:[EMAIL PROTECTED]
attachment: winmail.dat
--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]


RE: Warp connections

2002-10-01 Thread Sigurur Bjarnason

It does.. Andy..to a point Thanks
 
But.. :)  What i am trying to do..is to let the connector.. just serve the *.jsp and 
servlets from /myapp  if there where .jpg .gif .html and so on..  in there 
tomcat..would also serve that..  And that ..is what i dont want at all..
 
I am thinkin of the performance of the website,  so to manage this i would have to 
have the static content.. at another place on the server this makes things more 
conplicated.. 
:(
 
 
Regards
Siggi
 
 

-Original Message- 
From: Andy Eastham [mailto:[EMAIL PROTECTED]] 
Sent: þri. 1.10.2002 12:52 
To: Tomcat Users List 
Cc: 
Subject: RE: Warp connections


Siggi,
 
What this means is that if you map, for example, /myapp to Tomcat, Tomcat will 
serve all content under /myapp.  You cannot get Apache to serve /myapp/my.jpg.
 
Apache will still serve things that aren't under /myapp, so /index.html, 
/images/my.jpg etc _will_ be served by Apache.
 
Does this clarify the situation?
 
All the best,
 
Andy

-Original Message-
From: Sigurður Bjarnason [mailto:[EMAIL PROTECTED]]
Sent: 01 October 2002 13:45
To: Tomcat Users List
Subject: RE: Warp connections


Ok.. So what is the use of the connector then ?!?!?!?
 
If not to let Tomcat serve the Jsp and Servlets.. witch it is supposed 
to do. ?!?
 
This makes no sense at all to have this connector then.. ... If Tomcat 
ends up serving all the content !  Then it would just be better to leave out Apache to 
save cpu and so on !..
 
This has to be misunderstanding !.. From my point of view, if the 
connector cannot do this.. I just Get rid of Apache and let Tomcat do all the work.. 
witch is does.. anyway if I use Warp..
 
 
regards 
Siggi
 

-Original Message- 
From: Jim Coble [mailto:[EMAIL PROTECTED]] 
Sent: lau. 28.9.2002 17:10 
To: Tomcat Users List 
Cc: 
Subject: Re: Warp connections 





Someone with more experience may have a better answer but it 
is my
understanding that mod_webapp does not permit you to 
distinguish between
static and dynamic content.  When you use mod_webapp, Tomcat 
services all
requests; i.e., you can't do what you want to do--serve html 
with Apache
and jsp/servlets with Tomcat--using mod_webapp -- you would 
have to
continue using mod_jk if that's what you want to do.
--Jim

==
Jim Coble
Senior Technology Specialist
Center for Instructional Technology
Email: [EMAIL PROTECTED]
Voice: 919-660-5974  Fax: 919-660-5923
Box 90198, Duke University
Durham, NC 27708-0198
==



   
   
  Sigurður 
   
  BjarnasonTo:   
Tomcat Users List [EMAIL PROTECTED] 
  [EMAIL PROTECTED]cc: 
   
  m   Subject:  Warp 
connections 
   
   
  09/28/2002 12:17 
   
  PM   
   
  Please respond

RE: Warp connections

2002-10-01 Thread Robert L Sowders

mod_jk will do exactly what you have described as your desire.

a simple directive like JkMount /*.jsp ajp13

will cause all .jsp files to be served by Tomcat, everything else goes to 
Apache.





Sigurður Bjarnason [EMAIL PROTECTED]
10/01/2002 06:21 AM
Please respond to Tomcat Users List

 
To: Tomcat Users List [EMAIL PROTECTED]
cc: 
Subject:RE: Warp connections

It does.. Andy..to a point Thanks
 
But.. :)  What i am trying to do..is to let the connector.. just serve the 
*.jsp and servlets from /myapp  if there where .jpg .gif .html and so on.. 
 in there tomcat..would also serve that..  And that ..is what i dont want 
at all..
 
I am thinkin of the performance of the website,  so to manage this i would 
have to have the static content.. at another place on the server this 
makes things more conplicated.. 
:(
 
 
Regards
Siggi
 
 

 -Original Message- 
 From: Andy Eastham [mailto:[EMAIL PROTECTED]] 
 Sent: þri. 1.10.2002 12:52 
 To: Tomcat Users List 
 Cc: 
 Subject: RE: Warp connections
 
 
 Siggi,
 
 What this means is that if you map, for example, /myapp 
to Tomcat, Tomcat will serve all content under /myapp.  You cannot get 
Apache to serve /myapp/my.jpg.
 
 Apache will still serve things that aren't under /myapp, 
so /index.html, /images/my.jpg etc _will_ be served by Apache.
 
 Does this clarify the situation?
 
 All the best,
 
 Andy

 -Original Message-
 From: Sigurður Bjarnason 
[mailto:[EMAIL PROTECTED]]
 Sent: 01 October 2002 13:45
 To: Tomcat Users List
 Subject: RE: Warp connections
 
 
 Ok.. So what is the use of the connector 
then ?!?!?!?
 
 If not to let Tomcat serve the Jsp and 
Servlets.. witch it is supposed to do. ?!?
 
 This makes no sense at all to have this 
connector then.. ... If Tomcat ends up serving all the content !  Then it 
would just be better to leave out Apache to save cpu and so on !..
 
 This has to be misunderstanding !.. From 
my point of view, if the connector cannot do this.. I just Get rid of 
Apache and let Tomcat do all the work.. witch is does.. anyway if I use 
Warp..
 
 
 regards 
 Siggi
 

 -Original 
Message- 
 From: Jim Coble 
[mailto:[EMAIL PROTECTED]] 
 Sent: lau. 28.9.2002 
17:10 
 To: Tomcat Users List 
 Cc: 
 Subject: Re: Warp 
connections 
 
 



 Someone with more 
experience may have a better answer but it is my
 understanding that 
mod_webapp does not permit you to distinguish between
 static and dynamic 
content.  When you use mod_webapp, Tomcat services all
 requests; i.e., you can't 
do what you want to do--serve html with Apache
 and jsp/servlets with 
Tomcat--using mod_webapp -- you would have to
 continue using mod_jk if 
that's what you want to do.
 --Jim
 
 ==
 Jim Coble
 Senior Technology 
Specialist
 Center for Instructional 
Technology
 Email: [EMAIL PROTECTED]
 Voice: 919-660-5974  Fax: 
919-660-5923
 Box 90198, Duke 
University
 Durham, NC 27708-0198
 ==
 
 
 
   
 Sigurður  
 BjarnasonTo:   Tomcat Users List 
[EMAIL PROTECTED] 
 [EMAIL PROTECTED]cc:  
   m  
Subject:  Warp connections   
   
 09/28/2002 12:17  
   PM  
  
 Please respond to  
 Tomcat Users  
 List  
   
   
 
 
 
 
 
 Hi all

Warp connections

2002-09-28 Thread Sigurur Bjarnason


Hi all..
 
I want to use the mod_webapp module for apache to connect it to tomcat.. I have one 
question about this
 
The thing is.. i want apache to serve all static content.. like html and let tomcat 
handle the jsp and servlets.
 
Now when i use the apj1.2 connector with mod_jk.so i use line like
 
JkMount /TESTSUITE/servlet/* ajp12
JkMount /TESTSUITE/*.jsp ajp12
 
when i use the mod_webapp.. i use lines like as follows 
 
 WebAppDeploy examplesconn  /examples
 
..that is here that i have a problem !  how can i exclude the jsp pages... with 
this. ?!
 
i have tryed to use 
 
 WebAppDeploy examplesconn  /examples/*.jsp 
 
But that have not worked for me.. so if someone out there have the answer.. i would be 
greatful ! :)
 
Regards
Siggi
 

 
 
 
 

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


Re: Warp connections

2002-09-28 Thread Jim Coble



Someone with more experience may have a better answer but it is my
understanding that mod_webapp does not permit you to distinguish between
static and dynamic content.  When you use mod_webapp, Tomcat services all
requests; i.e., you can't do what you want to do--serve html with Apache
and jsp/servlets with Tomcat--using mod_webapp -- you would have to
continue using mod_jk if that's what you want to do.
--Jim

==
Jim Coble
Senior Technology Specialist
Center for Instructional Technology
Email: [EMAIL PROTECTED]
Voice: 919-660-5974  Fax: 919-660-5923
Box 90198, Duke University
Durham, NC 27708-0198
==



   

  Sigurður 

  BjarnasonTo:   Tomcat Users List 
[EMAIL PROTECTED]  
  [EMAIL PROTECTED]cc: 

  m   Subject:  Warp connections  

   

  09/28/2002 12:17 

  PM   

  Please respond to

  Tomcat Users

  List

   

   






Hi all..

I want to use the mod_webapp module for apache to connect it to tomcat.. I
have one question about this

The thing is.. i want apache to serve all static content.. like html and
let tomcat handle the jsp and servlets.

Now when i use the apj1.2 connector with mod_jk.so i use line like

JkMount /TESTSUITE/servlet/* ajp12
JkMount /TESTSUITE/*.jsp ajp12

when i use the mod_webapp.. i use lines like as follows

 WebAppDeploy examplesconn  /examples

..that is here that i have a problem !  how can i exclude the jsp
pages... with this. ?!

i have tryed to use

 WebAppDeploy examplesconn  /examples/*.jsp

But that have not worked for me.. so if someone out there have the answer..
i would be greatful ! :)

Regards
Siggi






(See attached file: winmail.dat)--
To unsubscribe, e-mail:   
mailto:[EMAIL PROTECTED]
For additional commands, e-mail: 
mailto:[EMAIL PROTECTED]





=?iso-8859-1?Q?winmail.dat?=
Description: Binary data

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


Re: Warp connections

2002-09-28 Thread John Walstra

In my virtual host I have ..

--
RewriteEngine on
RewriteLogLevel 0
RewriteRule (.*jsp)$ /jsp$1 [PT]

WebAppConnection myConnection warp localhost:8008
WebAppDeploy myWebapp myConnection /jsp/
--

It will rewrite all jsp requests to use the jsp directory in the htdocs 
directory. It then matches the rules for using the Warp connector. Make sure 
your rewrite rules is a PT (pass-through). If you L (last) it will never be 
matched against the Warp connector rule.

On Saturday 28 September 2002 11:17 am, Sigurður Bjarnason wrote:
 Hi all..

 I want to use the mod_webapp module for apache to connect it to tomcat.. I
 have one question about this

 The thing is.. i want apache to serve all static content.. like html and
 let tomcat handle the jsp and servlets.

 Now when i use the apj1.2 connector with mod_jk.so i use line like

 JkMount /TESTSUITE/servlet/* ajp12
 JkMount /TESTSUITE/*.jsp ajp12

 when i use the mod_webapp.. i use lines like as follows

  WebAppDeploy examplesconn  /examples

 ..that is here that i have a problem !  how can i exclude the jsp
 pages... with this. ?!

 i have tryed to use

  WebAppDeploy examplesconn  /examples/*.jsp

 But that have not worked for me.. so if someone out there have the answer..
 i would be greatful ! :)

 Regards
 Siggi

-- 
John Walstra
[EMAIL PROTECTED]

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




How to configure multiple warp connections

2002-07-30 Thread Ratner, Ian

Can someone point me to an example of how to configure a single instance of
Apache to connect to two different Tomcat servers (running different apps)
using warp?

I tried the configuration below, but it didn't work:

WebAppConnection warpConnection warp localhost:8084
WebAppDeploy app1 warpConnection /app1/
WebAppDeploy app2 warpConnection /app2/
WebAppDeploy app3 warpConnection /app3/

WebAppConnection warpConnection2 warp localhost:19123
WebAppDeploy app4 warpConnection2 /app4/

The following errors show up in the arror_log:

Cannot deploy application app1
Cannot deploy application app2
Cannot deploy application app3

As if it's expecting the warpConnection apps will be available on the
warpConnection2 server.

Thanks,
Ian

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




AW: How to configure multiple warp connections

2002-07-30 Thread Felix Schumacher

You have to use a different WebAppConnection for each WebAppDeploy
So use:
WebAppConnection warpAp1 warp localhost:8084
WebAppDeploy app1 warpAp1 /app1/
WebAppConnection warpAp2 warp localhost:8084
WebAppDeploy app2 warpAp2 /app2/
WebAppConnection warpAp3 warp localhost:8084
WebAppDeploy app3 warpAp3 /app3/
This will deploy three different apps in one tomcat into your
apache. Just change the localhost:8084 into something different
and there you are.
btw: If there is no reason to change the warpConnector port, don't
change it.

Bye
 Felix






Online Fotoalben - jetzt kostenlos bei http://www.ePost.de



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




Re: How to configure multiple warp connections

2002-07-30 Thread Milt Epstein

On Tue, 30 Jul 2002, Ratner, Ian wrote:

 Can someone point me to an example of how to configure a single instance of
 Apache to connect to two different Tomcat servers (running different apps)
 using warp?

 I tried the configuration below, but it didn't work:

 WebAppConnection warpConnection warp localhost:8084
 WebAppDeploy app1 warpConnection /app1/
 WebAppDeploy app2 warpConnection /app2/
 WebAppDeploy app3 warpConnection /app3/

 WebAppConnection warpConnection2 warp localhost:19123
 WebAppDeploy app4 warpConnection2 /app4/

FWIW, when I've seen the WebAppDeploy directive, the last argument did
not have a trailing slash.  Perhaps you should try it without it.


 The following errors show up in the arror_log:

 Cannot deploy application app1
 Cannot deploy application app2
 Cannot deploy application app3

 As if it's expecting the warpConnection apps will be available on the
 warpConnection2 server.

Why do you say that?  I don't get that from the above error messages
(or is there more to them?).

The only other thing I can think of is whether things are all
configured and running properly on the Tomcat side of things.  For
example, are the Tomcat instances up and running on the appropriate
ports?

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: AW: How to configure multiple warp connections

2002-07-30 Thread Milt Epstein

On Tue, 30 Jul 2002, Felix Schumacher wrote:

 You have to use a different WebAppConnection for each WebAppDeploy
 So use:
 WebAppConnection warpAp1 warp localhost:8084
 WebAppDeploy app1 warpAp1 /app1/
 WebAppConnection warpAp2 warp localhost:8084
 WebAppDeploy app2 warpAp2 /app2/
 WebAppConnection warpAp3 warp localhost:8084
 WebAppDeploy app3 warpAp3 /app3/
 This will deploy three different apps in one tomcat into your
 apache. Just change the localhost:8084 into something different
 and there you are.
 btw: If there is no reason to change the warpConnector port, don't
 change it.

This is not correct, you don't need to use different
WebAppConnection's for each WebAppDeploy.  In fact, it's
counter-productive, and I could even imagine you'd get an error if you
tried to have different WebAppConnection's running on the same
host:port.

BTW, it's helpful to include the question you're responding to when
you post.

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]




AW: Re: AW: How to configure multiple warp connections

2002-07-30 Thread Felix Schumacher

Thanks for the info. You are right, I can use one Connector for
each Tomcat.

-- Original Nachricht --

On Tue, 30 Jul 2002, Felix Schumacher wrote:

 You have to use a different WebAppConnection for each WebAppDeploy
 So use:
 WebAppConnection warpAp1 warp localhost:8084
 WebAppDeploy app1 warpAp1 /app1/
 WebAppConnection warpAp2 warp localhost:8084
 WebAppDeploy app2 warpAp2 /app2/
 WebAppConnection warpAp3 warp localhost:8084
 WebAppDeploy app3 warpAp3 /app3/
 This will deploy three different apps in one tomcat into your
 apache. Just change the localhost:8084 into something different
 and there you are.
 btw: If there is no reason to change the warpConnector port, don't
 change it.

This is not correct, you don't need to use different
WebAppConnection's for each WebAppDeploy.  In fact, it's
counter-productive, and I could even imagine you'd get an error if you
tried to have different WebAppConnection's running on the same
host:port.

BTW, it's helpful to include the question you're responding to when
you post.

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]










Online Fotoalben - jetzt kostenlos bei http://www.ePost.de



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




Warp Connections and the Webapp Manager

2001-10-23 Thread Ross Berman


I have several developers whom share a single development server.

My apache/warp setup is as follows:

IfModule mod_webapp.c
WebAppConnection rossConn warp localhost:8010
WebAppDeploy ross_app rossConn /ross_app

WebAppConnection sueConn warp localhost:8011
WebAppDeploy sue_app sueConn /sue_app

WebAppConnection daveConn warp localhost:8012
WebAppDeploy dave_app daveConn /dave_app

...
/IfModule

I want all of my developers to share the same tomcat instance so I have
symbolic links to all of their contexts in $CATALINA_HOME/webapps.

The problem is, developers frequently need to restart their contexts
(auto-reloading doesn't always work correctly.) but they shouldn't need to
restart the entire Catalina instance (it takes a while too).  The webapp
manager looks like the perfect solution, except it doesn't seem to work the
way it's documented.

Let's say I have 'ross_app' running just fine and I can directly access it
through the warp connector at http://localhost/ross_app/myapp.  I can also
get to it through http://localhost:8080/ross_app/myapp.  But if I issue:
http://localhost:8080/manager/stop?path=/ross_app to stop it, I can no
longer access it via http://localhost:8080/ross_app/myapp but It still works
fine through the warp connection!?!?  Even when reloading a webapp with the
manager, it doesn't seem to reload the webapp when I connect through the
warp connector.  How does this happen?  Is there any way to reload a webapp
when it's being used through a warp connection without restarting the entire
Catalina engine?  Anyone have a better idea (a separate Catalina instance
for each developer is slow and takes a lot of memory)?  There seem to be a
lot of issues, even with the ajp13 connector, which I couldn't get working
properly either in 4.0.1.

Also, if I start/restart apache when 'sue_app' doesn't exist in the webapps
directory, my apache error_log gets filled with this message:
  [error] Cannot deploy application sue_app
It will continue to quickly expand my error_log until either I add 'sue_app'
or I run out of disk space.  I don't think that is a desired behavior, is it
going to change?

Note: I configured and compiled the webapp module with '--with-apxs'

Any help or information would be greatly appreciated,
   Ross

[EMAIL PROTECTED]