Google Web Toolkit - Remote Procedure Calls

learn more… | top users | synonyms

59
votes
8answers
16k 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 ...
26
votes
6answers
8k 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 ...
20
votes
6answers
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 ...
19
votes
12answers
21k views

GWT - occasional com.google.gwt.user.client.rpc.SerializationException

we are haunted by occasional occurences of exceptions such as: com.google.gwt.user.client.rpc.SerializationException: Type 'xxx' was not assignable to ...
19
votes
7answers
12k 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. ...
15
votes
6answers
10k 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 ...
14
votes
3answers
6k 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 ...
12
votes
2answers
4k 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 ...
11
votes
2answers
4k 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 ...
10
votes
3answers
665 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
3answers
2k views

Generating html for SEO

I found this article http://docs.google.com/Doc?id=dcsq25m_04k4cmgfd on generating html on server side for spider. What do you folks think about using this technique to serve different content ...
8
votes
1answer
291 views

Elegant way to detect if GWT application is out of date and auto-refresh browser?

After many support cases we are realizing the biggest problem we have with our GWT-based application is that users are leaving it open for weeks at a time. This means when we do a hotfix every week ...
7
votes
3answers
5k 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 ...
7
votes
1answer
813 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 ...
7
votes
4answers
5k 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
4answers
2k 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 ...
7
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 ...
7
votes
2answers
4k 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 ...
7
votes
1answer
3k 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 ...
6
votes
4answers
5k 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 ...
6
votes
4answers
2k 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 ...
6
votes
3answers
4k 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 ...
6
votes
2answers
406 views

Sending File and HashMap to server in GWT

I have to send file and their properties to GWT server. For sending a file i used form panel. public class BrowseFile extends DialogBox { // more code // .. private FormPanel ...
6
votes
4answers
716 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 ...
6
votes
2answers
133 views

How to resend a GWT RequestFactory request

Is it possible to resend a RequestFactory transmission? I'd like to do the equivalent of this: How to resend a GWT RPC request when using RequestFactory. It is fairly simple to resend the same payload ...
5
votes
6answers
5k views

SerializationException: type not included in serializable type set

In my Google Web Toolkit project, I got the following error: com.google.gwt.user.client.rpc.SerializationException: Type ‘your.class.Type’ was not included in the set of types which can be serialized ...
5
votes
4answers
1k 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
3answers
337 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? ...
5
votes
2answers
7k 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
3k 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 ...
5
votes
2answers
2k 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 ...
5
votes
1answer
2k 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: ...
5
votes
1answer
830 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
1answer
726 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 ...
5
votes
1answer
339 views

JBoss Errai, should I replace all my GWT-RPC client calls with it?

Is there still any benefit to using GWT-RPC to do my client-side calls if I have JBoss Errai (which I downloaded in order to do server push)? Or would I lose nothing if I just used Errai calls for ...
5
votes
2answers
472 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 ...
4
votes
2answers
3k views

com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException

I have a problem with my GWT application. I deploy on Jetty server and it runs. But when I perform a server call (class on server package of GWT), the server returns an error message. The message is: ...
4
votes
3answers
2k 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
4answers
682 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 ...
4
votes
1answer
1k 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
2answers
2k views

Need help debugging GWT - Jetty 'unknown realm'

I am trying to debug a GWT application, but it seems I can't do it with jetty. Whenever I try to run it in hosted mode for debugging I get an 'unknown realm' 500 error message (nothing loads). I am ...
4
votes
1answer
1k views

gwt serialization policy hosted mode out of sync

When running my GWT application (gwt 2.0.4) in hosted mode, calling RPC methods running on remote Tomcat, I get GWT serialization exception: INFO: GwtRpcEventSrvc: ERROR: The serialization policy ...
4
votes
3answers
3k views

GWT serialization exception

I have a simple service method which returns ArrayList. However when I call this method, I am getting an exception as follows: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: The ...
4
votes
2answers
554 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
3answers
752 views

GWT Visualization best practice

I'm new with Google Visualization for GWT and I need help. Can someone tell me which is best pratice to transfer DataTable (data for visualization) with GWT RPC. Cause DataTable is not ...
4
votes
1answer
842 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
1answer
11k views

HTTPSession with GWT

I'm new in GWT ... I would like to implement sessions in my Web App Basically I want that a session starts at the click of a button (handle an event) and ends at the click of another button (other ...
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
2answers
410 views

How to handle session expired exception in Spring MVC-Spring Security app for GWT RPC calls

I have Spring MVC application where security is handled by Spring Security. UI is built using GWT which gets the data from server using RPC approach. I need to handle on UI the situation when ...
3
votes
2answers
211 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 ...

1 2 3 4 5 10