Problem with Resin, database and JSP/Servlets

2002-06-28 Thread Patrick Fong
Hi I have a problem with my resin server. It is very unstable and tends to loose persistence(?). What happens is that database connection is ok for a while, but as soon as I change a class, or a jsp, it throws the error mentioned below. What I do is delete all the *.jsp and *.class files form the

Re: mending-error 500

2002-06-28 Thread Kesav, Ramesh
Try this out style="width=100%" name=dept tabindex=47> <% cmd="select * from hrm_dept_master order by dpt_dept_name"; rs1=stmt.executeQuery(cmd); while(rs1.next()) { String d=rs1.getString(1); String dd=rs1.getString(2); if (d.equals(jdept)){ %> <%=dd%> <% } else { %>

Re: request.getParameter(..) problem

2002-06-28 Thread Richard Yee
You can't read the file upload parameter using request.getParameter(). You will need to use a file upload library class such as Jason Hunter's found on servlets.com. to read uploaded files. Having a file upload parameter in your form is causing the problems with reading the other parameters too.