Chetan Pandey ha scritto:
<%
response.sendRedirect("/loggingAction.do?function=login");

%>

This does not work if your webapp is not in the ROOT context (that is the 99% of cases when developing).
Either use a relative path (i.e. remove the first '/') or use:

response.sendRedirect("/" + application.getServletContextName() + 
"/loggingAction.do?function=login");


HTH
Antonio


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

Reply via email to