> Well, i'm sorry but i won't propose any answer...
>
> I just post a question:
>
> What does exactly means this mapping ?
> I don't understand the /*
>
> <!-- Define the Manager Servlet Mapping -->
> <servlet-mapping>
> <servlet-name>Manager</servlet-name>
> <url-pattern>/*</url-pattern>
> </servlet-mapping>
>
> Maybe yu can help.
>
> Regards. Jean-Luc B :0)
>
This means that any request("*") to the root directory("/") should go to the
manager servlet
I usually try to assign servlets to subdirectories: /manager/*
This way only requests to the manager directory get sent to the manager
servlet. (i.e. http://localhost/manager/list is treated the same as
http://manager/someothername.html)
Charlie
--
To unsubscribe: <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>