Re: Servlet reloading problems

2001-04-17 Thread H.F.N. den Boer
In server.xml set reloadable to true. I use the context mapping; Context path="/xx" docBase="xx" crossContext="true" debug="i" reloadable="true" trusted="true" /Context That's all. And it works perfect on the following config I use; Win2K server, build 5.00.2195IIS 5.0,

RE: Servlet reloading problems

2001-04-17 Thread Steve Brainard
ECTED]]Sent: Tuesday, April 17, 2001 11:44 AMTo: [EMAIL PROTECTED]Subject: Re: Servlet reloading problems In server.xml set reloadable to true. I use the context mapping; Context path="/xx" docBase="xx" crossContext="true" de

Re: Servlet reloading problems

2001-04-17 Thread situbu42
as far as i know, when you recompile a class, you need to restart tomcat. there is nothing that you can do about it and there are no plans to change that. (i got that tidbit from an online discussion group from a sun employee.) sorry :( At 11:06 04/17/2001 -0700, you wrote: I've read all

RE: Servlet reloading problems

2001-04-17 Thread CPC Livelink Admin
ue" /Context -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 17, 2001 3:08 PM To: [EMAIL PROTECTED] Subject: Re: Servlet reloading problems as far as i know, when you recompile a class, you need to restart tomcat. there is nothing that yo

Re: Servlet reloading problems

2001-04-17 Thread Milt Epstein
On Tue, 17 Apr 2001 [EMAIL PROTECTED] wrote: as far as i know, when you recompile a class, you need to restart tomcat. there is nothing that you can do about it and there are no plans to change that. (i got that tidbit from an online discussion group from a sun employee.) sorry :( Funny,

Re: Servlet reloading problems

2001-04-17 Thread Jason_Henriksen
Servlet reloading works fine under Tomcat, however I've been bitten where the servlet re-loaded OK, but a class my servlet depends on changed but was not reloaded. For example, if ServletA uses StaticServiceB. I can reload ServletA all day long, but changes to StaticServiceB wont be picked up

RE: Servlet reloading problems

2001-04-17 Thread Steve Brainard
EMAIL PROTECTED]] Sent: Tuesday, April 17, 2001 12:15 PM To: [EMAIL PROTECTED] Subject: RE: Servlet reloading problems Actually, it does work - you have to set the reload attribute to true in the server.xml - my entry looks like this : Context path="/tracking" docBase="d:

RE: Servlet reloading problems

2001-04-17 Thread CPC Livelink Admin
I have never heard/seen of the TomcatConf.xml file, so you are one up on me there. -Original Message- From: Steve Brainard [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 17, 2001 4:26 PM To: '[EMAIL PROTECTED]' Subject: RE: Servlet reloading problems Thanks for the reply