Techytes Computer Institute,Hoshiarpur is Now Registered With SSI    (Small Scale Industry, India)

Home  | About Us   | Site Map   |Contact Us
 

JAVA ADVANCE

JDBC

 

SALIENT FEATURES
JDBC programs are platform and Vendor independent.
JDBC components inter-operate with Database and connects via JDBC - ODBC bridges.

 

APPLICATIONS
You can use JDBC in both applications and applets.
Database vendors and database tool vendors can supply the low level drivers. Thus, they can optimize their drivers for their specific products.
With JDBC you can write useful programs to handle realistic database chores.


 

JAVABEANS
 
JavaBeans component architecture is the platform-neutral architecture for the Java application environment.

 
SALIENT FEATURES
It's the only component architecture you should consider if you're developing for the Java platform.
The JavaBeans architecture takes inter-operability, a major step forward so that your code runs on every OS and also within any application environment.
JavaBeans components inter-operate with ActiveX and connects via ActiveX-JavaBeans bridges.

 

APPLICATIONS
It's the ideal choice for developing or assembling network-aware solutions for heterogeneous hardware and operating system environments within the enterprise or across the Internet.
JavaBeans component architecture extends "Write Once, Run AnywhereTM" capability to reusable component development.
A beans developer secures a future in the emerging network software market without losing customers that use proprietary platforms.

Java-Servlet

Servlets are used for Server-Side Programming. Servlets are generic extensions to Java-enabled servers. Their most common use is to extend Web servers, providing a very secure, portable and easy-to-use replacement for CGI. A Servlet is a dynamically loaded module that services requests from a Web server. It runs entirely inside the Java Virtual Machine.

 

SALIENT FEATURES
Processing data posted over https using an HTML form, including purchase order or credit card data. A servlet like this could be part of an order-entry and processing system, working with product and inventory databases, and perhaps an on-line payment system.
Allowing collaboration between people. A servlet can handle multiple requests concurrently; they can synchronize requests to support systems such as on-line conferencing.
Forwarding requests. Servlets can forward requests to other servers and servlets. This allows them to be used to balance load among several servers that mirror the same content. It also allows them to be used to partition a single logical service over several servers, according to task type or organizational boundaries.
Being a community of active agents. A servlet writer could define active agents that share work among each other. Each agent would be a servlet, and the agents could pass data among themselves.

 

APPLICATIONS
Create JDBC connection pool.
Create an Online Catalog System.
Developing E-Commerce "store fronts" will become one of the most common uses for Java Servlets.
Servlets can be used to deploy Websites that open up large legacy systems on the Internet.

 

CONTENTS
Servlet Overview & Architecture.
Servlet Basics.
Servlet & Html.
SSI (Server - Side Include).
Servlet chaining.
Servlet & the JDBC.
Servlet Beans.
Java server Pages.
Servlets as Distributed Object Clients.
Servlet Session.