Re: Reload Servlets/Classes

2002-10-08 Thread billfly3

http://localhost:8080/manager/reload?path=/

will reload an application.  You must be set up as as a 
role of manager in the users.xml file. See 
the .../webapps/tomcat-docs/manager-howto.html for more 
information.
 
 Sorry if this has been asked before, but when working in a development
 environment, how can I reload newly compiled classes w/o restarting the
 tomcat server?
 
 Thanks,
 CC
 
 
 --
 This message contains confidential information and is intended only for
 the individual named. If you are not the named addressee you should not
 disseminate, distribute or copy this e-mail. Please notify the sender
 immediately by e-mail if you have received this e-mail by mistake and
 delete this e-mail from your system. E-mail transmission cannot be
 guaranteed to be secure or error-free as information could be
 intercepted, corrupted, lost, destroyed, arrive late or incomplete, or
 contain viruses. The sender therefore does not accept liability for any
 errors or omissions in the contents of this message, which arise as a
 result of e-mail transmission. If verification is required please
 request a hard-copy version. 
 
 --
 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]




Reload Servlets/Classes

2002-10-07 Thread Chuck Carson


Sorry if this has been asked before, but when working in a development
environment, how can I reload newly compiled classes w/o restarting the
tomcat server?

Thanks,
CC


--
This message contains confidential information and is intended only for
the individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. E-mail transmission cannot be
guaranteed to be secure or error-free as information could be
intercepted, corrupted, lost, destroyed, arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message, which arise as a
result of e-mail transmission. If verification is required please
request a hard-copy version. 

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




Re: Reload Servlets/Classes

2002-10-07 Thread Padhu Vinirs


I asked the same question few minutes back. One of two ways:

1. set reloadable=true for your web app context element in server.xml. 
Restart tomcat.

2. Copy the ant build.xml in tomcat-docs/appdev/sample into your web 
app, edit the build.xml for ur app and call ant reload everytime.


-- padhu




Chuck Carson wrote:

Sorry if this has been asked before, but when working in a development
environment, how can I reload newly compiled classes w/o restarting the
tomcat server?

Thanks,
CC


--
This message contains confidential information and is intended only for
the individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. E-mail transmission cannot be
guaranteed to be secure or error-free as information could be
intercepted, corrupted, lost, destroyed, arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message, which arise as a
result of e-mail transmission. If verification is required please
request a hard-copy version. 

--
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: Reload Servlets/Classes

2002-10-07 Thread Chuck Carson


I am wanting to do this for classes under ROOT/WEB-INF/classes

I noticed that Context path= docBase=ROOT debug=0/ is commented
out, do I uncomment this entry and add the reloadable to this section?

Thanks,
CC

 -Original Message-
 From: Padhu Vinirs [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, October 07, 2002 9:40 AM
 To: Tomcat Users List
 Subject: Re: Reload Servlets/Classes
 
 
 
 I asked the same question few minutes back. One of two ways:
 
 1. set reloadable=true for your web app context element in 
 server.xml. 
 Restart tomcat.
 
 2. Copy the ant build.xml in tomcat-docs/appdev/sample into your web 
 app, edit the build.xml for ur app and call ant reload everytime.
 
 
 -- padhu
 
 
 
 
 Chuck Carson wrote:
 
 Sorry if this has been asked before, but when working in a 
 development 
 environment, how can I reload newly compiled classes w/o 
 restarting the 
 tomcat server?
 
 Thanks,
 CC
 
 
 --
 This message contains confidential information and is 
 intended only for 
 the individual named. If you are not the named addressee you 
 should not 
 disseminate, distribute or copy this e-mail. Please notify 
 the sender 
 immediately by e-mail if you have received this e-mail by 
 mistake and 
 delete this e-mail from your system. E-mail transmission cannot be 
 guaranteed to be secure or error-free as information could be 
 intercepted, corrupted, lost, destroyed, arrive late or 
 incomplete, or 
 contain viruses. The sender therefore does not accept 
 liability for any 
 errors or omissions in the contents of this message, which 
 arise as a 
 result of e-mail transmission. If verification is required please 
 request a hard-copy version.
 
 --
 To unsubscribe, e-mail:   
 mailto:tomcat-user- [EMAIL PROTECTED]
 For 
 additional commands, 
 e-mail: 
 mailto:[EMAIL PROTECTED]
 
 
   
 
 
 
 
 --
 To unsubscribe, e-mail:   
 mailto:tomcat-user- [EMAIL PROTECTED]
 For 
 additional commands, 
 e-mail: mailto:[EMAIL PROTECTED]
 



--
This message contains confidential information and is intended only for
the individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. E-mail transmission cannot be
guaranteed to be secure or error-free as information could be
intercepted, corrupted, lost, destroyed, arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message, which arise as a
result of e-mail transmission. If verification is required please
request a hard-copy version. 

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




Re: Reload Servlets/Classes

2002-10-07 Thread Padhu Vinirs


Uncomment that line and add reloadable=true. i tested this and it works 
fine.

-- padhu



Chuck Carson wrote:

I am wanting to do this for classes under ROOT/WEB-INF/classes

I noticed that Context path= docBase=ROOT debug=0/ is commented
out, do I uncomment this entry and add the reloadable to this section?

Thanks,
CC

  

-Original Message-
From: Padhu Vinirs [mailto:[EMAIL PROTECTED]] 
Sent: Monday, October 07, 2002 9:40 AM
To: Tomcat Users List
Subject: Re: Reload Servlets/Classes



I asked the same question few minutes back. One of two ways:

1. set reloadable=true for your web app context element in 
server.xml. 
Restart tomcat.

2. Copy the ant build.xml in tomcat-docs/appdev/sample into your web 
app, edit the build.xml for ur app and call ant reload everytime.


-- padhu




Chuck Carson wrote:



Sorry if this has been asked before, but when working in a 
  

development 


environment, how can I reload newly compiled classes w/o 
  

restarting the 


tomcat server?

Thanks,
CC


--
This message contains confidential information and is 
  

intended only for 


the individual named. If you are not the named addressee you 
  

should not 


disseminate, distribute or copy this e-mail. Please notify 
  

the sender 


immediately by e-mail if you have received this e-mail by 
  

mistake and 


delete this e-mail from your system. E-mail transmission cannot be 
guaranteed to be secure or error-free as information could be 
intercepted, corrupted, lost, destroyed, arrive late or 
  

incomplete, or 


contain viruses. The sender therefore does not accept 
  

liability for any 


errors or omissions in the contents of this message, which 
  

arise as a 


result of e-mail transmission. If verification is required please 
request a hard-copy version.

--
To unsubscribe, e-mail:   
  

mailto:tomcat-user- [EMAIL PROTECTED]


For 
  

additional commands, 
e-mail: 


mailto:[EMAIL PROTECTED]


 

  


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






--
This message contains confidential information and is intended only for
the individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. E-mail transmission cannot be
guaranteed to be secure or error-free as information could be
intercepted, corrupted, lost, destroyed, arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message, which arise as a
result of e-mail transmission. If verification is required please
request a hard-copy version. 

--
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: Reload Servlets/Classes

2002-10-07 Thread Chuck Carson


Coo, thanks.

-Chuck


 -Original Message-
 From: Padhu Vinirs [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, October 07, 2002 10:53 AM
 To: Tomcat Users List
 Subject: Re: Reload Servlets/Classes
 
 
 
 Uncomment that line and add reloadable=true. i tested this 
 and it works 
 fine.
 
 -- padhu
 
 
 
 Chuck Carson wrote:
 
 I am wanting to do this for classes under ROOT/WEB-INF/classes
 
 I noticed that Context path= docBase=ROOT debug=0/ 
 is commented 
 out, do I uncomment this entry and add the reloadable to 
 this section?
 
 Thanks,
 CC
 
   
 
 -Original Message-
 From: Padhu Vinirs [mailto:[EMAIL PROTECTED]]
 Sent: Monday, October 07, 2002 9:40 AM
 To: Tomcat Users List
 Subject: Re: Reload Servlets/Classes
 
 
 
 I asked the same question few minutes back. One of two ways:
 
 1. set reloadable=true for your web app context element in
 server.xml. 
 Restart tomcat.
 
 2. Copy the ant build.xml in tomcat-docs/appdev/sample into your web
 app, edit the build.xml for ur app and call ant reload everytime.
 
 
 -- padhu
 
 
 
 
 Chuck Carson wrote:
 
 
 
 Sorry if this has been asked before, but when working in a
   
 
 development
 
 
 environment, how can I reload newly compiled classes w/o
   
 
 restarting the
 
 
 tomcat server?
 
 Thanks,
 CC
 
 
 --
 This message contains confidential information and is
   
 
 intended only for
 
 
 the individual named. If you are not the named addressee you
   
 
 should not
 
 
 disseminate, distribute or copy this e-mail. Please notify
   
 
 the sender
 
 
 immediately by e-mail if you have received this e-mail by
   
 
 mistake and
 
 
 delete this e-mail from your system. E-mail transmission cannot be
 guaranteed to be secure or error-free as information could be 
 intercepted, corrupted, lost, destroyed, arrive late or 
   
 
 incomplete, or
 
 
 contain viruses. The sender therefore does not accept
   
 
 liability for any
 
 
 errors or omissions in the contents of this message, which
   
 
 arise as a
 
 
 result of e-mail transmission. If verification is required please
 request a hard-copy version.
 
 --
 To unsubscribe, e-mail:   
   
 
 mailto:tomcat-user- [EMAIL PROTECTED]
 
 
 For
   
 
 additional commands,
 e-mail: 
 
 
 mailto:[EMAIL PROTECTED]
 
 
  
 
   
 
 
 --
 To unsubscribe, e-mail:   
 mailto:tomcat-user- [EMAIL PROTECTED]
 For
 additional commands, 
 e-mail: mailto:[EMAIL PROTECTED]
 
 
 
 
 
 
 --
 This message contains confidential information and is 
 intended only for 
 the individual named. If you are not the named addressee you 
 should not 
 disseminate, distribute or copy this e-mail. Please notify 
 the sender 
 immediately by e-mail if you have received this e-mail by 
 mistake and 
 delete this e-mail from your system. E-mail transmission cannot be 
 guaranteed to be secure or error-free as information could be 
 intercepted, corrupted, lost, destroyed, arrive late or 
 incomplete, or 
 contain viruses. The sender therefore does not accept 
 liability for any 
 errors or omissions in the contents of this message, which 
 arise as a 
 result of e-mail transmission. If verification is required please 
 request a hard-copy version.
 
 --
 To unsubscribe, e-mail:   
 mailto:tomcat-user- [EMAIL PROTECTED]
 For 
 additional commands, 
 e-mail: 
 mailto:[EMAIL PROTECTED]
 
 
   
 
 
 
 
 --
 To unsubscribe, e-mail:   
 mailto:tomcat-user- [EMAIL PROTECTED]
 For 
 additional commands, 
 e-mail: mailto:[EMAIL PROTECTED]
 



--
This message contains confidential information and is intended only for
the individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. E-mail transmission cannot be
guaranteed to be secure or error-free as information could be
intercepted, corrupted, lost, destroyed, arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message, which arise as a
result of e-mail transmission. If verification is required please
request a hard-copy version. 

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