java.io.IOException: An exception occurred processing [index.jsp] at line [44]
41: <div class="grid_13">
42: <%@ include file="WEB-INF/jspf/search_form.jspf" %>
43: <div id="main-content">
44: <jsp:include page="<%=szAction %>" />
45: <%@ include file="WEB-INF/jspf/search.jspf" %>
46: </div>
47: </div>
Caused by: java.io.FileNotFoundException: The requested resource [/2] is not available
Reason: szAction is initialized with '2' value and this is not a jspf file
Proposed solution
Initialize szAction with the path of an existing jspf file to allow render the page and after that app will perform the redirect.
Steps to reproduce the issue
index.jsp?action=2
)Traceback
Reason:
szAction
is initialized with '2' value and this is not a jspf fileProposed solution
Initialize
szAction
with the path of an existing jspf file to allow render the page and after that app will perform the redirect.