Tagged Questions
Google Web Toolkit - Remote Procedure Calls
25
votes
5answers
6k views
When should I use RequestFactory vs GWT-RPC?
I am trying to figure out if I should migrate my gwt-rpc calls to the new GWT2.1 RequestFactory cals.
Google documentation vaguely mentions that RequestFactory is a better client-server communication ...
17
votes
5answers
3k views
Sending persisted JDO instances over GWT-RPC
I've just started learning Google Web Toolkit and finished writing the Stock Watcher tutorial app.
Is my thinking correct that if one wants to persist a business object (like a Stock) using JDO and ...
14
votes
6answers
8k views
Problems passing class objects through GWT RPC
I've run through the Google Web Toolkit StockWatcher Tutorial using Eclipse and the Google Plugin, and I'm attempting to make some basic changes to it so I can better understand the RPC framework.
...
10
votes
3answers
280 views
Using a nested enum in GWT-RPC
I have an enum with a nested enum (which I want to make private), but when I do so GWT tells me that the nested enum is not visible and throws an exception.
public enum OuterEnum {
...
9
votes
6answers
2k views
Should I build a REST backend for GWT application
I am planning a new application and have been experimenting with GWT as a possible frontend. The design question I am facing is this.
Should I use
Option A: GWT-RPC and build the app quickly
...
9
votes
1answer
2k views
Difference between gwt, gwt-rpc, ext-gwt, smart gwt
I would like to know the difference between GWT, GWT-RPC, EXT-GWT and Smart GWT. Currently, I managed to borrow books on GWT which I understand is just a library designed to facilitate fast and ...
8
votes
6answers
2k views
SerializationPolicy error when performing RPC from within GWT application
I'm getting the following exception:
com.google.gwt.user.client.rpc.SerializationException: Type 'java.lang.Long' was not included in the set of types which can be serialized by this ...
7
votes
3answers
1k views
Experiences with integrating spring 3 mvc with GWT?
Given:
Spring 3.0 mvc has excellent REST support with one of the representation being JSON.
GWT simplifies development as UI is developed in java. But by default it uses RPC for client server ...
7
votes
4answers
3k views
GWT RPC - Does it do enough to protect against CSRF?
UPDATE : GWT 2.3 introduces a better mechanism to fight XSRF attacks. See http://code.google.com/webtoolkit/doc/latest/DevGuideSecurityRpcXsrf.html
GWT's RPC mechanism does the following things on ...
7
votes
3answers
2k views
gwt generate html for seo? what do u think?
i found this article http://docs.google.com/Doc?id=dcsq25m_04k4cmgfd . generate html on server side for spider. what do you folks think about using this technique to serve different content depending ...
6
votes
3answers
2k views
Invoke a GWT RPC service from Java directly
Is there an easy way to invoke a GWT RPC service endpoint directly from Java code? I mean real Java code, not Java code compiled down into javascript.
I ask because we want to run performance ...
5
votes
1answer
319 views
ClassNotFoundException on GAE with GWT RPC
I'm using PlayN to develop a game. It contains a type,GameEvent, defined in my-game-core project. My GWT and GAE code lives in my-game-html, which has my-game-core as a Maven dependency.
Here is the ...
5
votes
2answers
248 views
How to know if an object is 'too large' for RPC in GWT and IE8?
I have an app that works fine in Firefox but when I tested in in IE8, I got a strange error : 'Stack overflow at line: 0'
After a suggestion from the GWT discussion group that it could be related to ...
5
votes
2answers
1k views
What is the purpose of the IsSerializable interface in GWT (regarding the RPC mechanism)
What is the purpose of the IsSerializable interface in GWT (regarding the RPC mechanism). I have never been able to find a good explanation as to why it is the way it is and why the default Java ...
5
votes
4answers
910 views
GWT: Populating a page from datastore using RPC is too slow
Is there a way to speed up the population of a page with GWT's UI elements which are generated from data loaded from the datastore? Can I avoid making the unnecessary RPC call when the page is loaded?
...
5
votes
1answer
4k views
GWT Simple RPC use case problem : Code included
I am trying to work out how to send a domain object from the server-side to the client-side using GWT RPC. I've coded a really simple use case that represents the sort of thing I (and others?) need to ...
5
votes
4answers
1k views
How can I keep GWT from trying to include every serializable class when I use ArrayList
I have an RPC service in GWT that needs to return a List. The List can be filled with various types of objects, all of which are serializable and all of are referenced elsewhere in my service so they ...
5
votes
4answers
602 views
Is there a Flex equivalent of GWT-RPC?
Right now a lot of my applications use GWT-RPC for retrieving POJO's from a GWT RemoteService which in turn calls a Web Service (SOAP) to get the data. I am evaluating Flex and didn't really see ...
5
votes
4answers
2k views
How to group gwt-rpc calls?
With DWR it is possible to group together several service calls into one single HTTP request :
dwr batch feature
This feature is very useful to reduce the latency of an ajax application.
Is there a ...
4
votes
4answers
286 views
GWT Best practice to send huge amount of data from server to client
Which are the Best practices to send huge amount of data from server to client in GWT?
Right now we are facing performance issue in GWT 2.3.0.
Our server side is sending huge xml (Size in MB/GB) to ...
4
votes
3answers
1k views
GWT: XSRF: Sporadic missing X-GWT-Permutation header
My application receives occasional XSRF Attack errors raised by GWT when RemoteServiceServlet.checkPermutationStrongName() fails to find a X-GWT-Permutation HTTP Header in the HttpServletRequest. When ...
4
votes
2answers
392 views
Extremely strange behavior in Internet Explorer with large GWT app
I have a loader on my page which is removed once I receive a successful response to my RPC. If the RPC call fails, the page is instantly refreshed.
Anytime I load my page for the first time in IE 7 ...
4
votes
1answer
605 views
Tips for optimizing performance on a very sluggish GWT app for mobile browsers
His,
Could maybe some of you share their experiences of mobile development on GWT?
We are developing a pretty interactive website with lots of clickable panels/buttons and experiencing tremendous ...
4
votes
3answers
2k views
gwt - Using List<Serializable> in a RPC call?
I have a RPC service with the following method:
public List<Serializable> myMethod(TransactionCall call) {...}
But I get a warning when this method is analyzed, and then the rpc call ...
4
votes
4answers
2k views
GWT-RPC vs HTTP Call - which is better?
I am evaluating if there is a performance variation between calls made using GWT-RPC and HTTP Call.
My appln services are hosted as Java servlets and I am currently using HTTPProxy connections to ...
4
votes
4answers
593 views
GWT + GAE/J, sending JDO objects through the wire, but how?
I'm having a problem. I would like to create Document object, and I would like to have a user property with com.google.appengine.api.users.User type (on GAE's docs site, they said we should use this ...
3
votes
3answers
63 views
What's the Best Way to Design a “Platform-Independent” GWT Server?
What's the best way to design a Java server architecture that interacts with a client-side GWT application, but also responds correctly to various other client-requests from other platforms? ...
3
votes
1answer
260 views
How to Use the GWT-RequestFactory in Android SyncAdapter (always getting ValidationTool-Error)
I got a question about the usage of GWT-RequestFactory in Android. As a starting point I used the code from the “Create a AppEngine connected Android-Project”-Wizard (infos: ...
3
votes
3answers
291 views
GWT RPC: DTO vs. DAO?
I've started learning GWT about a week ago and here's the question I can't answer for sure.
Here's the server-side:
// business object - has logic
interface Article {
String getTitle(); // lazy
...
3
votes
1answer
229 views
Using RPC serialization/deserialization mechanism built in GWT
I am developing GWT offline application using HTML5 Local Storage. I would like to cache/store the transfer objects using com.google.gwt.storage.client.Storage (introduced in version 2.3). But the ...
3
votes
3answers
2k views
RPC Error after GWT 2.3 upgrade
After upgrading to GWT 2.3 some of my RPC services no longer work and
fail with "The response could not be deserialized". It seems to
happen to services that are returning objects that are use Date ...
3
votes
2answers
144 views
Waiting for more than one event (using GWT)
I want to fetch two XML documents from the server and resume processing when both have arrived. Can I fetch them in parallel, or do I have to refrain from issuing the second request until the first ...
3
votes
1answer
79 views
What will be the bast way to manage a cleint side database in GWT bases Cleints?
I am working on a GWT client. My application needs to store some data at the client. I want to put that data in the browser cache. SO, this data will be available to be used(at least for current ...
3
votes
1answer
405 views
GWT Keep in sync client and server model
When the user comes to the site, an empty Shopping Cart is created on the client and server side. When he adds a product into the SC a RPC call is done to add the product on the server side. We need ...
3
votes
4answers
754 views
GWT RPC and persistent Java objects
First of all,
many thanks to Craig for the excellent answer below which I found very useful when searching my original issue...
ref: ...
3
votes
1answer
403 views
GWT serialization of a subclass
I have RPC service that returns an object of type GameEvent that
extends from Event (abstract). When I get the object on the client
side, all the properties inherited from Event (eventId, ...
3
votes
2answers
2k views
GWT: Storing Session ID in cookie, and then what?
I'm currently making a site using GWT, being hosted on AppEngine. I'm making it with my own logins that I'm making (I know Google provides something with GWT, but I need my own login system), and I've ...
3
votes
2answers
3k views
How to bring Spring Roo & GWT together
I am trying to develop a Spring Roo/GWT app with the newest integration of GWT in Roo.
Getting the scaffolding to work is very straightforward, but I don't really understand how the RPC works there.
...
3
votes
1answer
207 views
Manually generating x-gwt-rpc from Python
I want to access a GWT service from a Python script, so I want to generate a x-gwt-rpc request manually. Can't seem to find any info on the format of a GWT RPC call, since everybody does it from Java ...
3
votes
1answer
521 views
How to sign in Chrome extension built with GWT using RPC
I have an application built with GWT/Appengine/Jdo...and i am using Google User Service for authentication.
Google Chrome Extensions can use OAuth...I don't really undestand OAuth yet..
Would GWT ...
3
votes
1answer
1k views
Calling a GWT service in a different context than the GWT Module Base?
I have a GWT module with the X-GWT-Module-Base http://host:8080/foo/ and would like to call a (GWT) service which is located at http://host:8080/bar/. The reason is for example that I want to be able ...
3
votes
2answers
681 views
Chat client with GWT
What would be the best way to create a JS chat client with GWT? The bit that I'm having trouble with is the persistence and transfer of the messages. Should I store the messages in a DB and check the ...
3
votes
1answer
2k views
GWT integration in existing J2EE application
I am new to GWT.I have developed a GWT application in version-1.6.4 and it is working fine.Now I want to integrate with that project in existing J2EE application.I dont know how to go ahead?
Where to ...
2
votes
1answer
20 views
How to handle RPCs in client-server PlayN game?
I'd like to use PlayN to create a client/server card game, e.g. Hearts. While I'm mostly focusing on the HTML5 output, I'd ideally like to be output-platform-agnostic in case I decide to make an ...
2
votes
1answer
32 views
A nice way to detect an expired session in an application that uses GWT and GWT-RPC almost exclusively?
If I were on a regular JSP application I would simple write a servlet filter that if it detects an expired session redirects you to a page that explains your session has expired.
In GWT are only ...
2
votes
1answer
84 views
Find if an overlay exists on a google map
Is there any way to know if an overlay already exist on a map, before we addOverlay to a map.
The thing what I want is, I have an application which gets LatLng points from google server ...
2
votes
2answers
97 views
how to send a file from an applet to an gwt server?
I'm trying to send a file from an applet to my server GWT. In another application, JSF, I would open an HTTP connection with my servlet.
How do I make whit an GWT server? I tried to insert my ...
2
votes
2answers
77 views
GWT - how can client detect that it's javascript is out-of-sync if server is updated
I have a GWT application where users keep the browser based side of the application open indefinitely. Every so often we upgrade the application - if the users hit reload in their browsers after this ...
2
votes
1answer
103 views
How to make a server call with out dispatch async instance in gwt
I am using using GWT2.3 with GWTP. Now in this application I need to make a server side call from a non presenter class (So there id no dispatch async instance).
Here is my class
public class ...
2
votes
1answer
220 views
GWT RequestFactory, how to implement Query results DTOs
I have a large implementation of GWT-RPC and actually I'm evaluating the alternative to move to RequestFactory.
The basic reason why I'm doing that is because I'm not very happy with TypeSerializers ...