Reputation: 249
In the context of a project we have to write a client/server application in Java. For this purpose we designed the server and the client application using HTTP requests/responses and a database. As we are fresh to this kind of project I have looked for a http server that could handle the basic tasks (such as http parser, db interaction, making/receiving HTTP response/request..). I found that server like Tomcat, Jetty and glassfish may answer to these questions (Or I did not correctly understood), but I am puzzled by some points:
There is no web page to display, only use HTTP as simple communication protocol that will contain data (iCalendar format) and will perform insert/get/modify/delete operations on the database after some controls.
Any help is welcome!
Upvotes: 1
Views: 952
Reputation: 3649
As i understand you serach something and want some useful links to start, lets try to answer your question:
How these application server work?
How can I write my service and then embed it in the application server? (API's, tutorials, good documentation, courses,...)
Which one is best suited for this kind of project?
Is there other simpler solutions?
Am I wrong?
Upvotes: 2