After several months of searching & reading, now i need your help, taking in consideration the following: - My Application Developed using Java Swing. - MySQL has been used as database. - JDBC has been used to make the communication between the application & database. - The application will run on network environment with multiple client will connect to database. - The application use Financial transactions, Posting, Billing ... etc.
** now i want to develop a server side that will work as middle-ware, this server side will do the following: - Connecting to the database to retrieve data as client request. - Business logic will be on the server side. - Client will not know about the database. - Queries Syntax will be on the server side. - The Client will View,Save,Edit, Cancel ... etc, sending these actions to the server side & server will response.
--- I have read about JFC, J2EE, EJB ... etc, but i don't want to run my application from browser, it will be kept as desktop application only due to the complexity of the application.
--- So i will do it using Sockets. Any ideas, or tutorials that i can follow?