Questions tagged [servletexception]

A Servlet Exception defines a general exception a servlet can throw when it encounters difficulty.

A servlet is a typical http request handler in java realm. A servlet-exception is thrown by the service method in case of any error condition while handling the requests.

64 questions
0
votes
2 answers

Exhausetd ResultSet Error when fetching from a perticular column

In my project, I am creating a Cancel Account facility to delete the account from user table. The user table name is newuser. The cancelaccount jsp looks like: <%@ page language="java" contentType="text/html;…
Mistu4u
  • 5,132
  • 15
  • 53
  • 91
0
votes
4 answers

HTTP Status 404 - Servlet .... is not available

I use eclise to create a servlet like this : package hello; public class NewServlet extends HttpServlet { private static final long serialVersionUID = 1L; protected void doPost(HttpServletRequest request, HttpServletResponse response) throws…
Thuc Hung
  • 130
  • 1
  • 1
  • 7
0
votes
1 answer

getting javax.servlet.ServletException:when running on Tomcat

Thanks all,I'm getting javax.servlet.ServletException: java.lang.ClassCastException: java.lang.Object cannot be cast to java.util.List when running my web application on tomcat a day later.if i click any action will have chance getting this…
Magiczml
  • 33
  • 1
  • 8
-1
votes
2 answers

renderURL not working on MVCPortlet jsp page

Hi Iam building a MVCPortlet on liferay . I use a view.jsp that point to two other jsp pages using renderURL but whenever i click on one of the two link i experience an Exception in eclipse console. here is the code of the view.jsp of the…
1 2 3 4
5