Since
an Intranet facility is not yet operational in Mehsana project, it was decided
to first set up a test Intranet facility using existing resources.
A
client PC available at IMMS server room was used for setting up the
Intranet. The Operating System on the PC
was Windows 98 having PWS (Personal Web Server) built-in. An IMMS web-site consisting of 3 to 4
web-pages (static content) was developed using Microsoft FrontPage Express and
deployed on this PC.
Since
PWS does not support Servlet extension, a hunt was carried out in Internet for
any free software. A Product called J-server was available which could be
configured with any existing Web Server for providing servlet functionality. A free test-deployment version was available
for free downloading in Internet. This
product was used.
PWS listens at default http port 80 and J-server
listens at port 8080. Both these web
servers were integrated so that both listened at default port 80, and PWS
passed on requests containing servlets to the J-server.
Odbc (Open
Database Connectivity ) Protocol is an
Industry protocol employed to integrate any platform specific application to
access any database irrespective of the vendors. Servlets can connect to databases through
three different methods. The easiest was
through jdbc-odbc bridge driver. So, for loading this driver, odbc was required to be first configured in the machine
(web server). Through ODBC configuration
utility available in control panel, odbc System
Sources were configured for all three
external (Ahmedabad, Baroda and Ankleswar)databases, in addition to the local
database. For clarity, the name of odbc system sources was kept the same as that of Oracle
Name alias string.
Jdbc-odbc bridge driver is supplied as part of jdk 1.3 and this was used.
As everyone would be aware, JDK is freely available for downloading from
the site of Sun Java, for developing java applications/applets. Latest version of JDK 1.3 was used to develop
the servlet code.
Go To Top Of Document