Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

JSP on ServletExec running under MS IIS 5.0

Status
Not open for further replies.

MichaelJames

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

Part and Inventory Search

Sponsor

Back
Top