I have a Java socket server program listening on a specific port. When receiving data from GPS Trackers (TCP/IP):
- treate data
- insert data into a small database
I want to make this program work robustly during a long period… how ? (web services, .. ?)
Thanks.
Use a java application server like Tomcat maybe with with Jersey.
And if data model on DB is complex you can use Hibernate too, to make simple storing data on db.