JSP Error
When i am running my registration.jsp getting following error.
HTTP Status 500 -
--------------------------------------------------------------------------------
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:370)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
root cause
java.lang.NullPointerException
org.apache.jsp.registration_jsp._jspService(org.apache.jsp.registration_jsp:95)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
note The full stack trace of the root cause is available in the Apache Tomcat/5.5.9 logs.
--------------------------------------------------------------------------------
Apache Tomcat/5.5.9
My JSP FILE IS:======registration.jsp======
========================================
<form action="userregst.jsp" method="post" name="contactForm">
<%
int registration_id=0;
dataAccessBean ob=new dataAccessBean();
ResultSet rs=ob.executeQuery("Select * from registeration");
if(rs.next())
{
if(rs.next())
{
registration_id=rs.getInt(1)+1;
}
}
else
{
registration_id=1;
}
%>
<table border="0" class="mainDataTable" width="915" style="border-collapse: collapse" bordercolor="#111111" cellpadding="0" cellspacing="0">
<tr>
<td width="219"></td>
<td class="detail_right" width="133"><font face="Verdana"><strong> User_id</strong></font></td>
<td colspan="2" class="detail_left" width="563"><font face="Verdana"><input maxLength="25" name="user_id" size="25">
</font>
</td>
</tr>
<tr>
<td width="219"></td>
<td class="detail_right" width="133"> </td>
<td colspan="2" class="detail_left" width="563"> </td>
</tr>
<tr>
<td width="219"></td>
<td class="detail_right" width="133"><font face="Verdana"><strong> Password</strong></font></td>
<td colspan="2" class="detail_left" width="563"><font face="Verdana"><input name="password" type="password" size="25" maxLength="25">
</font>
</td>
</tr>
......
......
<tr>
<td width="219"><font face="Verdana"> </font></td>
<td class="detail_right" vAlign="top" width="133"><div align="right">
<font face="Verdana">
<input type="submit" value="Register Now" name="registernow" style="float: left"></font></div></td>
<td width="569" colspan="2"><font face="Verdana">
<input type="reset" value="Reset" name="reset"></font></td>
</tr>
<tr>
<input type="hidden" name="registration_id" value="<%=registration_id %>">
</form>
======================
Java Class=dataAccessBean.java
package com.ziaur;
import java.sql.*;
public class dataAccessBean {
private static String driver="sun.jdbc.odbc.jdbcodbcDriver";
private static String database = "F:\\globus.mdb";
private static String url="jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ="+database+";DriverID=22;READONLY=false";
private static String uid="";
private static String pass="";
Connection con=null;
Statement st=null;
public dataAccessBean()
{
try{
Class.forName(driver);
con=DriverManager.getConnection(url,uid,pass);
st=con.createStatement();
}
catch(Exception e)
{
}
}
public ResultSet executeQuery(String qry)
{
ResultSet rs=null;
try
{
System.out.println(qry);
rs=st.executeQuery(qry);
}
catch (Exception e)
{
System.out.println("data get from bean"+e.getMessage());
}
return rs;
}
public int executeUpdate(String qry)
{
int i=0;
try{
i=st.executeUpdate(qry);
System.out.println(i);
}
catch(Exception e)
{
System.out.println("Exception in Query"+e.getMessage());
}
return i;
}
}
Please help to debug my problem....
View Answers
Related Tutorials/Questions & Answers:
JSP errorJSP error what is difference between global-exception and
error-page in
jsp. which condition they are use
jsp errorjsp error <p>hi, could please help whenever i run
jsp file in my eclipse i got this error.my
jsp file is</p>
<%@ page language... encountered an internal
error () that prevented it from fulfilling this request
Advertisements
jsp error - JSP-Servletjsp error HTTP Status 404 - /
jsp...
message /
jsp/
description The requested resource (/
jsp/) is not available...,
The 404 or Not Found
error message is an HTTP standard response code indicating
JSP Error - JSP-ServletJSP Error When i am running my registration.jsp getting following
error.
HTTP Status 500...
description The server encountered an internal
error () that prevented it from fulfilling
jsp error - JSP-Servletjsp error Hello, my name is sreedhar. i wrote a
jsp application to generate a report from oracledata base and the report should display in Ms-excel... in detail.
Visit for more information.
http://www.roseindia.net/
jsp/
Thanks
jsp error - JSP-Servletjsp error how to remove below
error::
exception
org.apache.jasper.JasperException: java.lang.NullPointerException
root cause......
newpo.jsp:
JSP Page
jsp error - JSP-Servletjsp error To Upload and insert the file into oracle Database with Current Date and Time In
JSP
and my project is online library management system plz help how to store some books in particular folder and after how retrive
JSP error page - JSP-ServletJSP error page Hi i have 1000 of
JSP. but we coded it without adding... the exception occured in
JSP. is there any short cut i can do? do not want to add this line.../DAO/bean layer and not in the
JSP.
let me know if you have any idea.
Thanks
JSP Translation error - JSP-ServletJSP Translation error Hello friends,
In a new file declared first variable shows the following
error.
-----------------------------------------------
An
error occurred at line: 2 in the
jsp file: /stud
jsp runtime error - JSP-Servletjsp runtime error sir, when i am running ur prog...
from this website....
http://www.roseindia.net/
jsp/poi/readingWriting.shtml
i did the same as per guidelines...but i got
error..!!!!
org.apache.jasper.JasperException
Servlet Error - JSP-Servlet/lib folder if database is mysql.
servlet-api.jar
jsp-api.jar
mysql-connector....
Error showing ==>Admin/FirstServlet is not a servlet
Sincerely
Prakash Hi prakash
servlet-api.jar
jsp-api.jar
mysql-connector
jsp code error - JSP-Servletjsp code error hello,
is anyone here who can solve my problem.
what happen experts where r u? r u not able to do
jsp code error - JSP-Servletjsp code error hello,
is anyone here who can solve my problem.
what happen experts where r u?
or
u r not able to do
jsp error - JDBCjsp error
in this code the else part is nt executing atall... of that a
error is like-----------"java.sql.SQLException: [Microsoft][ODBC Driver Manager... the line is not getting incremented u r getting that
error just
do this change
JScript error - JSP-ServletJScript error Hello friends,
I am doing
jsp... logins while updating profile it will not show any
error. But, in many logins it shows
error as unterminated string.
I am not able
jsp code error - JSP-Servletjsp code error I have a
jsp page named "tMastDepartment".which has some table row containing text box like 'project code','Departmentcode','employee_id',
'address', and 'city' and a one dropdown list which contains department
jsp-Hibernate Error - JSP-Servletjsp-Hibernate Error hi, my problem is, I designed an Interface where i am tring to listing the all rows of a table using Iterator and putted a link for deleting each row. I am deleteing row using row id of that record.it delete
Script error - JSP-Servlet running this it shows an
error as "STACK OVERFLOW".
Correct the code . The code... any problem then send me
jsp code.
Thanks
JSP SQL ErrorJSP SQL Error Hi While trying to execute the below code i'm getting the following
error "java.sql.SQLException: Io exception: Got minus one from a read call ". please help me out.
<%
try{
String Username
jsp-servelet,error http404jsp-servelet,
error http404 I am using mysql commandclient to connect with eclipse using
jsp and servelet.
I keep getting the
error hhtp 404.
Register.jsp
Name:<input type="text" name="userName"/><
Jsp Error - Development processJsp Error Hi, While executing Add_Data.jsp , am getting following
error.
"Data type mismatch in criteria expression."
"View_Data.jsp...)
at
jsp_servlet.__add_data._jspService(__add_data.java:146
jsp-Hibernate Error - Hibernatejsp-Hibernate Error hi, my problem is, I designed an Interface where i am tring to listing the all rows of a table using Iterator and putted a link for deleting each row. I am deleteing row using row id of that record.it delete
Programming Error - JSP-Servlet("");
}
catch(SQLException se)
{
out.println("Database
Error :"+se.getMessage());
}
catch(Exception e)
{
out.println("General
Error :"+e.getMessage... ServletException,IOException
{doPost(req,res);}
}
There is some
error JSP Error 500
JSP Error 500
JSP Error 500 is to generate
error status 500 in
jsp. The
Error 500
occurred when the server encounter an internal
error Jsp Error - Development processJsp Error Hi, While executing following code "View_Service.jsp" , am getting
Internal Server
Error
java.sql.SQLException: [Microsoft][ODBC...(JdbcOdbcStatement.java:288)
at
jsp_servlet.__add_data._jspService(__add_data.java:146
Programming Error - JSP-ServletProgramming Error How to validate login page using
jsp where it checks for username whether it is empty or not or is it including number or not if it is the paste alert message.
Hi Friend,
Try the following
insertion error - JSP-Servletinsertion error my first
jsp page :
In this i m getting all the values through a method called getAllDetails,the values are getting inserted... into table.
below is the codeof
jsp and java pages;
function
JSP Page ErrorJSP Page Error Hello Sir.
I m using Oracle 10g as a database n tomcat server
DSN name : NB
Username NB
Password EBS
Table name consumer
When i run
jsp page on the browser it only shows the code nothing else..
I have
JSP Page ErrorJSP Page Error Hello Sir.
I m using Oracle 10g as a database n tomcat server
DSN name : NB
Username NB
Password EBS
Table name consumer
When i run
jsp page on the browser it only shows the code nothing else..
I have
JSP Page ErrorJSP Page Error Hello Sir.
I m using Oracle 10g as a database n tomcat server
DSN name : NB
Username NB
Password EBS
Table name consumer
When i run
jsp page on the browser it only shows the code nothing else..
I have
Tomcat error - JSP-Servlet the
error :-this is non microsoft product please see event log . what might be the reason of such error HI,
Can you paste the
error log here.We
output error - JSP-Servletoutput error /*hi friends, the given below is my servlet program
error? How can i solve this problem? */
HTTP Status 500... report
message
description The server encountered an internal
error error message - JSP-Servleterror message hi, friends
after complete my servlet programe i can type http://localhost:8080 on the browser. the servlet program is insert data into dbms. but i have errormessage that is "window can not access the specified
Error output - JSP-ServletError output Can anyone please assist me; The printed output should be:
The product is 10. But instead of it I got; The product is undefined.
Can anyone trace what went wrong of my code pls
JSP Error Page
JSP Error Page
JSP Error Page is used to specify the custom
error page and runtime
error
occurs with an exception being thrown, the custom
Programming error - JSP-Servlet");
}
catch(SQLException se)
{
out.println("Database
Error :"+se.getMessage());
}
catch(Exception e)
{
out.println("General
Error :"+e.getMessage());
}
%>
Programming error - JSP-ServletProgramming error Actually there is an
error in placeorder.jsp file where there are 5 fields OrderNo ,Name , Address, Email, PhoneNo
where if I delete an order of client based on orderno then suppose in database if there are 5
Error in Jsp - Development processError in Jsp Hi Friends, For the following code when i include src in script Sub-Combo box is not working . but if i remove src then it will work.
Add Data
var arr = new Array();
arr["Select"] = new Array
Error in loading jsp file - JSP-ServletError in loading
jsp file I did as u have said.
I copied iitem.jsp in webapps\examples\
jsp and item.java in webapps\examples\WEB-INF\classes\form...:8080/webapps/examples/
jsp/iitem.jsp
In both cases,it is giving the following
error