Hi, Is it possible to access DB objects over http. There is a scenario where there are three servers A, B and C. The database is running on server 'C' and server 'B' has connectivity to this database ( which I am planning to do using hibernate and spring). However, Server A doesn't have connectivity to Server 'C'. Now, a GUI application running on server 'A' needs access to DB / hibernate POJO objects which will be created on Server 'B'. Is there any mechanism for e.g via http by which the GUI app running on server 'A' can get access (read / write /update) to the Database on server 'C' via server 'B'. I came across an opensource called 'Virtual JDBC' http://vjdbc.sourceforge.net/ which is somewhat similar to what I am expecting. But the problem here is that the DB querying will have to be done using JDBC statements... which I want to avoid.
Kindly help !
Thanks, Abhijit
|