Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8306137
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:16:14+00:00 2026-06-08T18:16:14+00:00

I am working on a project that involves mobile and web clients with Google’s

  • 0

I am working on a project that involves mobile and web clients with Google’s AppEngine PAAS. I would like to use RESTFul webservices with my AppEngine app.

I have looked over Stackoverflow for references to RESTFul service frameworks that can be used with AppEngine for both web (GWT) and mobile (Android) clients. Although Restlet seems to provide editions for AppEngine, GWT and Android, so far I’ve got it down to RestEasy mostly due to this question.

There have been questions previously that discuss RESTFul frameworks but I don’t think the comparisons apply well to this, now quite common, case. It would be helpful to hear experienced developers’ views on the frameworks available for this set of platforms and merits versus demerits of each.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T18:16:15+00:00Added an answer on June 8, 2026 at 6:16 pm

    You might wish to consider using Google Cloud Endpoints, which was announced as a trusted tester feature for App Engine at Google I/O, and is now available to everyone. With Endpoints, you annotate simple Java (or Python) classes and methods to describe your API. For example, this is a simple class to get and retrieve a list of high scores from a Tic Tac Toe game:

    @Api(name = "tictactoe")
    public class ScoreEndpoint {
      @ApiMethod(name = "scores.get")
      public Score get(@Named("id") String id) {
        PersistenceManager pm = getPersistenceManager();
        Score score = pm.getObjectById(Score.class, id);
        pm.close();
        return score;
      }
    
      @ApiMethod(name = "scores.list")
      public List<Score> list() {
        PersistenceManager pm = getPersistenceManager();
        Query query = pm.newQuery(Score.class);
        return (List<Score>) pm.newQuery(query).execute();
      }
    }
    

    Features

    • Support for Java and Python runtimes
    • Built on Google’s API infrastructure – it works with many of the same tools and libraries used for Google’s own APIs, such as the APIs Explorer and APIs Console
    • Automatically-generated, statically-typed client libraries for Android and iOS – these libraries are using the same Google-authored Java and Objective-C libraries you would use to access other Google-provided APIs such as the Calendar API
    • Dynamically-typed JS client library – again, the same library you use to access other Google-provided APIs in JS
    • Built in support for OAuth 2
    • Integration with the Google Plugin for Eclipse – this allows you to automatically create an API based on a model, or an App Engine application to back an existing Android app
    • Support for local development – you can build and test your API using the App Engine development environment, just as with other App Engine features

    Learn More

    Check out the documentation for more details on using Endpoints.

    You can also watch several talks from Google I/O:

    • Building Mobile App Engine Backends for Android, iOS and the Web
    • HTML5 and App Engine: The Epic Tag Team Take on Modern Web Apps at Scale
    • Building Android Applications that Use Web APIs
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a project that involves XSLT. And would like to use a
I am working on a large project that involves taking thousands (30,000+) static web
I'm working on a project that involves the use of very sensitive data, and
I am working on a project that involves a url forwarder (like bit.ly or
I'm working on a project that involves a simple web service, and have had
I'm working on a project that involves the use of Visio's Drawing Control hoseted
I'm working on a project that involves converting a large amount of HTML content
I'm currently working on a project that involves a significant amount of hooking and
I'm working on a Haskell project that involves tying a big knot: I'm parsing
I'm working on an interesting project that involves displaying a large number of photos.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.