You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by "Caldarale, Charles R" <Ch...@unisys.com> on 2007/02/28 23:26:58 UTC

RE: Ant custom tasks: how to compile .java files and restart Tomcat(Tomcat6.0.9)?

> From: Daniel Gresh [mailto:dgresh@lle.rochester.edu] 
> Subject: Re: Ant custom tasks: how to compile .java files and 
> restart Tomcat(Tomcat6.0.9)?
> 
> Is webapps/[appname], where [appname]=ROOT a web application? 
> If so, I can just use reload when I deploy new .class files
> without ever having to restart Tomcat, right?

Correct on both counts.  Every directory or .war file immediately under
the <Host> appBase directory is a webapp, even if it doesn't have a
WEB-INF or other spec-defined structure.  Very useful for deploying
"apps" that are nothing but static content.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Servlet Lifecycle

Posted by Peter Kennard <pe...@livingwork.com>.
So if a servlet is lets say in a long transaction, sending a huge 
data set, and the manager is wanting to "undeploy" it,

Does it get notified while the long lasting servlet thread is sending 
data so if one wants to abort it, you can truncate writing in a 
controlled way and clean up the mess nicely?

Or will it wait until it is done or a timeout and you get notified 
with uninit() after this?

Of course I want notification, that leaves you enough time to be nice :)

PK



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Tomcat JNI and native libraries

Posted by Luis Rivera <lu...@gmail.com>.
    Hi,

As far as I understand, libraries can be placed anywhere as long as that
directory is in the path (environment variable, not classpath), while the
jni java side has to be placed either in the shared or common directories. I
have it working in the shared directory, so that Tomcat does not try to load
the libraries more than once.

    --Luis R.

On 2/28/07, Andrew Pliszka <ap...@alienforceit.com> wrote:
>
> What is the best place to install JNI Java bridge and native libraries.
> We are using Linux and Tomcat 5.
>
> Thanks
> Andrew Pliszka
>
>
> Caldarale, Charles R wrote:
>
> >>From: Daniel Gresh [mailto:dgresh@lle.rochester.edu]
> >>Subject: Re: Ant custom tasks: how to compile .java files and
> >>restart Tomcat(Tomcat6.0.9)?
> >>
> >>Is webapps/[appname], where [appname]=ROOT a web application?
> >>If so, I can just use reload when I deploy new .class files
> >>without ever having to restart Tomcat, right?
> >>
> >>
> >
> >Correct on both counts.  Every directory or .war file immediately under
> >the <Host> appBase directory is a webapp, even if it doesn't have a
> >WEB-INF or other spec-defined structure.  Very useful for deploying
> >"apps" that are nothing but static content.
> >
> > - Chuck
> >
> >
> >THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
> >MATERIAL and is thus for use only by the intended recipient. If you
> >received this in error, please contact the sender and delete the e-mail
> >and its attachments from all computers.
> >
> >---------------------------------------------------------------------
> >To start a new topic, e-mail: users@tomcat.apache.org
> >To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
> >For additional commands, e-mail: users-help@tomcat.apache.org
> >
> >
> >
> >
> >
>
>
>
> ---------------------------------------------------------------------
> To start a new topic, e-mail: users@tomcat.apache.org
> To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: users-help@tomcat.apache.org
>
>

Tomcat JNI and native libraries

Posted by Andrew Pliszka <ap...@alienforceit.com>.
What is the best place to install JNI Java bridge and native libraries. 
We are using Linux and Tomcat 5.

Thanks
Andrew Pliszka


Caldarale, Charles R wrote:

>>From: Daniel Gresh [mailto:dgresh@lle.rochester.edu] 
>>Subject: Re: Ant custom tasks: how to compile .java files and 
>>restart Tomcat(Tomcat6.0.9)?
>>
>>Is webapps/[appname], where [appname]=ROOT a web application? 
>>If so, I can just use reload when I deploy new .class files
>>without ever having to restart Tomcat, right?
>>    
>>
>
>Correct on both counts.  Every directory or .war file immediately under
>the <Host> appBase directory is a webapp, even if it doesn't have a
>WEB-INF or other spec-defined structure.  Very useful for deploying
>"apps" that are nothing but static content.
>
> - Chuck
>
>
>THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
>MATERIAL and is thus for use only by the intended recipient. If you
>received this in error, please contact the sender and delete the e-mail
>and its attachments from all computers.
>
>---------------------------------------------------------------------
>To start a new topic, e-mail: users@tomcat.apache.org
>To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
>For additional commands, e-mail: users-help@tomcat.apache.org
>
>
>
>  
>



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org


Re: Ant custom tasks: how to compile .java files and restart Tomcat(Tomcat6.0.9)?

Posted by Daniel Gresh <dg...@lle.rochester.edu>.
Caldarale, Charles R wrote:
>> From: Daniel Gresh [mailto:dgresh@lle.rochester.edu] 
>> Subject: Re: Ant custom tasks: how to compile .java files and 
>> restart Tomcat(Tomcat6.0.9)?
>>
>> Is webapps/[appname], where [appname]=ROOT a web application? 
>> If so, I can just use reload when I deploy new .class files
>> without ever having to restart Tomcat, right?
>>     
>
> Correct on both counts.  Every directory or .war file immediately under
> the <Host> appBase directory is a webapp, even if it doesn't have a
> WEB-INF or other spec-defined structure.  Very useful for deploying
> "apps" that are nothing but static content.
>
>  - Chuck
>
>
> THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
> MATERIAL and is thus for use only by the intended recipient. If you
> received this in error, please contact the sender and delete the e-mail
> and its attachments from all computers.
>
> ---------------------------------------------------------------------
> To start a new topic, e-mail: users@tomcat.apache.org
> To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
> For additional commands, e-mail: users-help@tomcat.apache.org
>
>
>
>   
Excellent, thanks a lot for the help.

I realize the other question I had which I posted in my previous reply 
is better asked in a new thread. I'll look into it more before I post it 
though to see if I can resolve it.

Thanks again,
Dan

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org
For additional commands, e-mail: users-help@tomcat.apache.org