Thanks for the response. I moved my JSPs to /visioneer and modified my
forward to:
String url = "/visioneer/HomeSearch.jsp";
RequestDispatcher dispatcher =
getServletContext().getRequestDispatcher(url);
dispatcher.forward(request, response);
And I now get this error:
*type* Status report
*message* _/visioneer/HomeSearch.jsp_
*description* _The requested resource (/visioneer/HomeSearch.jsp) is not
available.
_
Mark Thomas wrote:
Thom Hehl wrote:
OK, I've looked through the docs and googled and I'm not having any luck
with this.
I have a brand new servlet for my webapp. I have it connected up and
running OK.
The problem is the forward to the JSP. I'm getting this error:
HTTP Status 404 - /visioneer/WEB-INF/SearchErrors.jsp
The servlet spec requires that no resources are served from the
WEB-INF directory for security reasons. Move the jsp to
/visioneer/SearchErrors.jsp and all should be fine.
mark
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Thom Hehl
Heavyweight Software for Heavyweight Needs
www.heavyweightsoftware.com
--
"In every revolution, there is one man with a vision."--Jerome Bixby
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]