I have a JSP Page. As soon as control passes to it I want to redirect to an
action:
<%
response.sendRedirect("/loggingAction.do?function=login");
%>
But the problem is I get a message: "The requested resource (/loggingAction)
is not available."
It seems JSP/Servelt method sendRedirect doesn't recognize my
struts-config.xml declarations.
Is their a Struts version for response.sendRedirect(. . .) ?
All other Struts based tags work. Example
<html:link action="/prepopulateCollectionsforProperty?function=create">
Works.
Thanks.
Chetan