Hi All,
The code below throws an Connection Reset by peer exception when run?The nature of operation is like this.
 
On the index.jsp we have a selection list and when the form is sumitted the action is to go to Divertor.jsp which then redirects to the respective page ?The code works fine till the jsp:forward tag and at that point throws the above exception.
 
We are using weblogic4.5 is there anything to be configured in weblogic..

<% PrintWriter logMsg=new PrintWriter(new FileWriter("c:\\temp\\log.txt"),true);

logMsg.println("Log FIle Creation over .......................");

%>

<%@ page isThreadSafe="false" errorPage=" " %>

<% logMsg.println("The request obj is "+request.getParameter("customerType"));logMsg.flush(); %>

<% String typeofCustomer=request.getParameter("customerType"); %>

<% if (typeofCustomer.equals("Residential")) { %>

<jsp:forward page="customerdetail1.jsp" />

<% } %>

 
Thanks in advance for any help...

Reply via email to