DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=43409>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=43409


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |INVALID




------- Additional Comments From [EMAIL PROTECTED]  2007-09-28 23:32 -------
And now read SRV.11. I can't emphasis enough the importance of being familiar
with the spec before you start to design / implement web apps.

In your case, your error page is a static file so it does not have a mapping in
web.xml. Therefore (SRV.11.1):
- no exact match
- longest path prefix matches your /* mapping (since this overrides the default
servlet that would normally serve static resources

You need to fix your configuration. Options include:
- add explicit mappings to your static resources that map them to the 
DefaultServlet
- put them all in a error directory and map /error/* to the DefaultServlet

Please use the users mailing list for further help.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

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

Reply via email to