vote up 0 vote down star

Hello,

In my GWT app I have the following model class:

import com.google.gwt.user.client.rpc.IsSerializable;

public class TestEntity implements IsSerializable {
    public String testString;
}

This class implements the GWT custom IsSerializable marker interface - which I really don't like, because I use my model classes not only for GWT. So I prefer java.io.Serializable.

But if I modify the class to implement Serializable instead of IsSerializable, the GWT RPC mechanism doesn't work anymore. I don't get an error on the server side, but on the client AsyncCallback.onFailure is invoked.

I am using...

  • GWT 1.7.0.
  • Spring 2.5.6.SEC01
  • Spring and GWT are configured as described here.
flag
Maybe a hint: the class appears in an *.gwt.rpc file: package.path.TestEntity, true – Ethan Leroy Aug 29 at 13:51

2 Answers

vote up 0 vote down

What exactly is the error you receive? We are using Serializable for our DTO's without any problems so you should be able to as well.

link|flag
Throwable.getMessage() on the client only says: The call failed on the server; see server log for details The stacktrace is empty. On the server log there are only my debug messages. And they tell me, that everything was fine. I forgot to say, that I also use Spring. GWT and Spring are configured as described here: technophiliac.wordpress.com/2008/08/… – Ethan Leroy Aug 29 at 13:02
vote up 0 vote down check

Ok, I went through the comments of the Gwt-Spring-Article (the link i posted) and found the solution. I had to change two lines in the process call method:

RPCRequest rpcRequest = RPC.decodeRequest(payload, this.remoteServiceClass, this);
return RPC.invokeAndEncodeResponse(this.remoteService, rpcRequest.getMethod(), rpcRequest.getParameters(), rpcRequest.getSerializationPolicy());
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.