MichaelJames
Programmer
I have been having serious problems with getting my JSPs to run<br>correctly under ServletExec running is MS IIS 5.0.<br> <br>Below is the code that does not work. (This JSP never branches to the correct JSP). Code for Process.jsp<br> <br> <br><%@ page import="java.util.*" %><br><%@ page import="qpakreqF.FormBean.class" %><br> <br><%!<br>ResourceBundle bundle =null;<br>public void jspInit() {<br> bundle = ResourceBundle.getBundle("forms"
;<br> }<br>%><br> <br><jsp:useBean id="formHandler" class="qpakreq.FormBean" scope="session"> <jsp:setProperty name="formHandler" property="*"> </jsp:useBean><br> <br><%<br> if (formHandler.validate()) {<br>%><br> <jsp:forward page="<%=bundle.getString(\"process.success\"
%>"/> <%<br> } else {<br>%><br> <jsp:forward page="<%=bundle.getString(\"process.retry\"
%>"/> <%<br> }<br>%><br> <br>Note this whole application runs fine on Inprise Application Server and JBuilder 3.5.<br> <br>Any suggestions or help would be greatly appreciated.<br> <br>Thanks,<br> Mike Payne<br>