Skip to main content

How to configure JNDI step by step in NetBeans..

 

Software Version Required
NetBeans IDE Java bundle, 6.8 or 6.9
Java Development Kit (JDK) version 6,7
GlassFish server v3 or Open Source Edition 3.0.1
SQL Server  2005
Type 4 Driver for SQL Server 2005 sqljdbc

SQL Server 2005 Type 4 driver

•First Download the SQL Server 2005 Type 4 driver.

•Set the classpath

DriverPath

Database Create a database and table in SQL Server 2005

Login Table

Create a new web Application

1

2

3

4

5

6

index.jsp code

<%-- 
Document   : index
Created on : Nov 21, 2012, 3:42:17 PM
Author     : NIIT
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JNDI DEMO</title>
</head>
<body bgcolor="pink">
<h1>Login Management System</h1>
<form action="NewServlet" method="post">
<table align="center">
<tr>
<td>User Name </td>
<td><input type="text" name="txtuser" ></td>
</tr>
<tr>
<td>Password </td>
<td><input type="password" name="txtpass" ></td>
</tr>
<tr>
<td><input type="submit" value="Login"></td>
</tr>
</table>
</form>
</body>
</html>





Configuration of JNDI



7



8



9



10



11



12



13



14



15



16



17



18



19



20



21



22



23



24



25



26



27



28



Now Check your Connection Poll is working or not?



Ser1



ser2



ser3



ser4



ser5



ser6



ser7



Create a Servlet



ser8



servlet1



servlet2



servlet3



servlet4



Servlet Code




import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import javax.naming.InitialContext;
import javax.naming.NamingException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.sql.DataSource;
@WebServlet(name = "NewServlet1", urlPatterns = {"/NewServlet1"})
public class NewServlet1 extends HttpServlet {


Connection con;
ResultSet rs;
Statement st;
InitialContext ctx;
DataSource ds;

protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
try {

String uname,pass;
uname=request.getParameter("txtuser");
pass=request.getParameter("txtpass");
String qry="select * from Login";

ctx = new InitialContext();
ds = (DataSource)ctx.lookup("jdbc/myDatasource");
con=ds.getConnection();
st = con.createStatement();
rs = st.executeQuery(qry);
rs.next();
if(uname.equals(rs.getString(1)) && pass.equals(rs.getString(2)))
{
out.println("Your User Name and Password is correct<br>");
out.println("Welcome Mr. "+ uname);

}
else
{
out.print("Invalid User Name & Password");

}
}
catch(SQLException ex)
{
out.println(ex.getMessage());
}
catch(NamingException nx)
{
out.println(nx.getMessage());
}
}






servlet5



servlet6



servlet7



servlet8servlet9servlet10servlet11servlet12servlet13

Comments

Popular posts from this blog

WAP to calculate the monthly telephone bills as per the following rule: Minimum Rs. 200 for upto 100 calls. Plus Rs. 0.60 per call for next 50 calls. Plus Rs. 0.50 per call for next 50 calls. Plus Rs. 0.40 per call for any call beyond 200 calls.

  #include<iostream.h> #include<conio.h> void main() { int calls; float bill; cout<<" Enter number of calls : "; cin>>calls; if (calls<=100) bill=200; else if (calls>100 && calls<=150) { calls=calls-100; bill=200+(0.60*calls); } else if (calls>150 && calls<=200) { calls=calls-150; bill=200+(0.60*50)+(0.50*calls); } else { calls=calls-200; bill=200+(0.60*50)+(0.50*50)+(0.40*calls); } cout<<" Your bill is Rs. "<<bill; getch(); }   Output: Enter number of calls : 190 Your bill is Rs.250

C++ Program to define a Class BOOK and accessing member function using its object.

  #include<iostream.h> #include<stdio.h> #include<conio.h> class BOOK { int BOOKNO; char BOOKTITLE[20]; float PRICE; void TOTAL_COST( int N) { float tcost; tcost=PRICE*N; cout<<tcost; } public : void INPUT() { cout<<" Enter Book Number "; cin>>BOOKNO; cout<<" Enter Book Title "; gets(BOOKTITLE); cout<<" Enter price per copy "; cin>>PRICE; } void PURCHASE() { int n; cout<<" Enter number of copies to purchase "; cin>>n; cout<<" Total cost is "; TOTAL_COST(n); } }; void main() { BOOK obj; obj.INPUT(); obj.PURCHASE(); getch(); }

Addition of Two Number using servlet and jsp

index.jsp <%@page contentType="text/html" pageEncoding="UTF-8"%> <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" > < html > < head > < meta http-equiv ="Content-Type" content ="text/html; charset=UTF-8" > < title > JSP Page </ title > </ head > < body bgcolor ="yellow" > < center >< h1 > Addition of Two Number </ h1 ></ center > < form action =" additionservlet " method ="post" > < table border ="0" width ="100" align ="center" > < tr > < td > First Number </ td > < td >< input type ="text" name ="txtnum1" value ="" /></ td > ...