On 05/10/2011 18:51, Martin O'Shea wrote:
> <welcome-file-list>
> <welcome-file>/jsp/index/newjsp.jsp</welcome-file>
> </welcome-file-list>
This is incorrect, it should contain a list of welcome-file elements
which indicated which files can be used as index files, when found in a
directory.
It shouldn't give a full path to a specific file:
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>index.html</welcome-file>
<welcome-file>newjsp.jsp</welcome-file>
</welcome-file-list>
p
|