Hi everyone! I have an Android application which uses
Tomcat in a
servlet this way:
1. The user click on a button in the phone (the client).
2. The client sends a message to a Tomcat which is running on my personal computer.
3. The Tomcat sends a message forward to SQL server (which also in my personal conputer).
4. The SQL server sends an answer back to the Tomcat .
5. The Tomcat sends the answer forward to the client (the phone) .
Until now everything works well.
Now, I have a router which creates a little private net in my house,
so my phone and my computer are connected to the same net (this little net in my house by my router).
It means, I can use this application wireless but only inside my house (or 20 meters around the router).
The question is, what do I need to do now, in order to use this application everywhere without being depend in the distance from my router.
I guess there are things I need to do about moving to a server.
How do I move all the
JAVA code (I wrote in the Tomcat side), and SQL code (I wrote in SQL server) to a server.
Thanks you,
Eliran.
P.S As you can notice from my message, I'm not so familiar with servers