user489041
user489041

Reputation: 28294

General Java Web App

I have a client server setup. I need my client to be able to call the server, and the server pass down either a file or the text contained in the file. I am new to web development. Which type of technologies should I investigate. I know that Java Web Services, Java Servlets, Java EE Applications all exist. But which one would be best for my uses? The server side application must be Java and run in Apache Tomcat.

Any suggestions would be greatly appreciated.

Thanks

Upvotes: 0

Views: 161

Answers (2)

01es
01es

Reputation: 5410

Try Restlet in combination with Jetty container, but it works with any container (including Tomcat). Here is where you can start.

Restlet can be used for both desktop or in-browser web apps. Also it nicely integrates with Google Web Toolkit.

Upvotes: 1

Bnjmn
Bnjmn

Reputation: 1999

Check out the Google Web Toolkit

Upvotes: 2

Related Questions