Try wrapping you data objects in POJO's and not passing your data as raw arrays and see if that helps.

-Mike

On 04/08/2014 03:33 PM, Pippo Baudone wrote:
i am in this situation:

|
|
@RemoteServiceRelativePath("create_event")publicinterfaceCreateEventServiceextendsRemoteService{String[]createeventServer(LinkedList<LinkedList<String>>input)throwsIllegalArgumentException;}
|




|
publicinterfaceCreateEventServiceAsync{voidcreateeventServer(LinkedList<LinkedList<String>>input,AsyncCallback<String[]>callback)throwsIllegalArgumentException;}
|




|
publicclassCreateEventServiceImplextendsRemoteServiceServletimplementsCreateEventService{publicString[]createeventServer(LinkedList<LinkedList<String>>input)throwsIllegalArgumentException{String[]arr =newString[2];...returnarr;}}
|


|

Why does this cause error "*The response could not be deserialized*"?

p.s. I have tried to execute the project with app engine and without it, but the problem is the same.

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected] <mailto:[email protected]>. To post to this group, send email to [email protected] <mailto:[email protected]>.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

--
You received this message because you are subscribed to the Google Groups "Google 
Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to