This is a simple bank application to debit and credit
transaction for the banking machine.This is to demonstrate the use of CORBA with JDBC.
This is a small application which is using two Protocols CORBA and JDBC. It has a
multithreaded client. Each client thread coordinated with the server as well as the
database. In this main client thread we creates two threads database thread and callback
threads. Database thread established a connection to the database and callback thread is
used to listen to the server for the callbacks. There is a multiconsole applet(server side
code) which is coordinating the server. The multiconsole applet uses CORBA to connect to
the server. Multiconsole Applet is sending request to the server to start the transaction.
Now the server which was listen by the callback thread send the request to this thread at
the client side which transfer this request to the database thread to start the execution
on the MS ACCESS database and start listening back to the server. So this is a totally
multithreaded scenario using CORBA, JDBC and callbacks.