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

  • Home
  • SEARCH
  • 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 8687179
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T23:03:19+00:00 2026-06-12T23:03:19+00:00

I’m trying to implement pagination using App Engine’s RPC and GWT (it’s an app

  • 0

I’m trying to implement pagination using App Engine’s RPC and GWT (it’s an app engine connected project).

How can I pass both the query results and the web-safe cursor object to the GWT client from the RPC?

I’ve seen examples using a servlet but I want to know how to do it without a servelt.

I’ve considered caching the cursor on the server using memcache but I’m not sure if that’s appropriate or what should be used as the key (session identifier I would assume, but I’m not sure how those are handled on App Engine).

Links to example projects would be fantastic, I’ve been unable to find any.

  • 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-12T23:03:20+00:00Added an answer on June 12, 2026 at 11:03 pm

    OK, so the best way to do this is to store the cursor as a string on the client.

    To do this you have to create a wrapper class that is transportable so you can pass back it to the client via RequestFactory that can hold the results list and the cursor string. To do that you create a normal POJO and then a proxy for it.

    here’s what the code looks like for the POJO:

    public class OrganizationResultsWrapper {
    
        public List<Organization> list;
        public String webSafeCursorString;
    
        public List<Organization> getList() {
            return list;
        }
    
        public void setList(List<Organization> list) {
            this.list = list;
        }
    
        public String getWebSafeCursorString() {
            return this.webSafeCursorString;
        }
    
        public void setWebSafeCursorString(String webSafeCursorString) {
            this.webSafeCursorString = webSafeCursorString;
        }
    }
    

    for the proxy:

    @ProxyFor(OrganizationResultsWrapper.class)
    public interface OrganizationResultsWrapperProxy extends ValueProxy{
    
        List<OrganizationProxy> getList();
        void setList(List<OrganizationProxy> list);
    
        String getWebSafeCursorString();
        void setWebSafeCursorString(String webSafeCursorString);
    
    }
    

    set up your service and requestFactory to use the POJO and proxy respectively

    // service class method
    @ServiceMethod
    public OrganizationResultsWrapper getOrganizations(String webSafeCursorString) {
        return dao.getOrganizations(webSafeCursorString);
    }
    
    // request factory method
    Request<OrganizationResultsWrapperProxy> getOrganizations(String webSafeCursorString); 
    

    Then make sure and run the RPC wizard so that your validation process runs otherwise you’ll get a request context error on the server.

    Here’s the implementation in my data access class:

    public OrganizationResultsWrapper getOrganizations(String webSafeCursorString) {
        List<Organization> list = new ArrayList<Organization>();
        OrganizationResultsWrapper resultsWrapper = new OrganizationResultsWrapper();
    
        Query<Organization> query = ofy().load().type(Organization.class).limit(50);
    
        if (webSafeCursorString != null) {
            query = query.startAt(Cursor.fromWebSafeString(webSafeCursorString));
        }
    
        QueryResultIterator<Organization> iterator = query.iterator();
        while (iterator.hasNext()) {
            list.add(iterator.next());
        }
    
        resultsWrapper.setList(list);
        resultsWrapper.setWebSafeCursorString(iterator.getCursor().toWebSafeString());
    
        return resultsWrapper;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
We're building an app, our first using Rails 3, and we're having to build
I am writing an app with both english and french support. The app requests
I am using Paperclip to handle profile photo uploads in my app. They upload
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am reading a book about Javascript and jQuery and using one of the

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.