-----------------------------
Please read the FAQ!
<http://java.apache.org/faq/>
-----------------------------

> What am I doing wrong?
> 

you are overloading the use of the repositories= line and the way that
classpaths and classloading work.

try this:

just have a

repositories=g:\servlets

line.

now, every single file in there and all the subdirectories will be reloaded.
before you had essentially two references to every directory within the
g:\servlets directory. you can't do that.

but wait, your servlet does not work now! so, you must either put your
servlets that are in the amrdev directory into the g:\servlets directory or
you must put a package line into your servlets and reference them this
way...

http://www.serverl.com/servlets/amrdev.ServletName

or you can setup an alias to your servlet so that you can just reference it
directly. or you can us mod_rewrite to rewrite the urls.

-jon


--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to