Reputation: 2613
I am a total beginner to web programming.
I'd like to create a web service using GAE/GWT with Java which functions similarly to how WCF from the .NET platform works. Is this possible?
I've been researching for a while and there are no really good solid examples. If someone could point me to good reading or examples then I'd be happy to take a look.
I checked this out : How to write a Web Service for Google App Engine?
However, that is python.
Upvotes: 0
Views: 133
Reputation: 9741
I'd recommend to read the tutorial at the GWT official site. The StockWatcher example teaches how to write an application, and discusses the different ways to retrieve information from the server. It works in either GAE or any other servlet container, it has even an example about how to create the web service in a php and consume it.
The left index of the tutorial is not correctly sorted because the gwtproject.org site documentation is produced automatically, but clicking on the next step link in each page you go to the next one.
[EDITED] Index of the GWT project is now correctly sorted after my changes
Upvotes: 2