Anna Chen wrote: > Can I put an action instead of a page in the welcome-file-list like: > <welcome-file-list> > <welcome-file>/do/login</welcome-file> > </welcome-file-list>
Nope. The servlet container will look for an actual file at that path. You need to have a index.html/jsp that forwards to your login page. For example, an index.jsp that had: <%@ page contentType="text/html" %> <jsp:forward page="/do/login" /> -Mark Who remembers asking a similar question when he first got his hands on Struts... -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>