1 - Yes, you have to compile them
2 - If you don't want to register your servlets in web.xml, you can use
the Invoker servlet. However, I believe there are security issues with
it, since it will allow any servlet on your site to be run.
Subir
-Original Message-
From: Julio Macedo [mailto
Hi,
it is not possible to make Tomcat automatically compile and deploy your
servlets.
Usually this is not necessary. If you use a good IDE, it is no great
effort to compile your servlets. Deployment could be done by using an
Ant script - just copy the servlet-binaries in the correct directory an
Julio Macedo wrote:
1. Do I really have to compile a servlet manually using javac (or using
another tool) or may I save it in a specific folder so Tomcat compiles
it to me?
You have to do this, Tomcat won't do it for you.
2. Do I really have to register my servlets in web.xml file or this
process c
On Wed, 2005-02-02 at 17:34, Julio Macedo wrote:
> Hi,
>
>
>
> I've just installed Tomcat 5.5 and I have two main doubts and I hope
> someone may help me.
>
>
>
> 1. Do I really have to compile a servlet manually using javac (or using
> another tool) or may I save it in a specific folder so