I'm working on a Java application which I want to be available over the internet. However, some requirements put me in a difficult situation. That's why I would appreciate some input of experienced programmers. The situation is as follows:
I have a basic webhost, with
but without
Now, I want to build an application (Java Web Start OR Java Applet) which can do the following:
Now you see the problem:
Has anyone a suggestion to this problem?
Thanks in advance!
Tom
I wouldn't recommend such scenario.
With applets and web start, you would expose the database user name and password to users. You could obfuscate them but, they could still be reverse engineered.
Instead, you should create a proper restful web service to mediate the connections from database to the clients.