Re: OnFailure getting executed even though server code does not return any errors

2008-09-19 Thread Ryan
Ok finally I found the error. I overrode doUnexpectedFailure method of remoteserviceservlet to find the source of the error. @Override protected void doUnexpectedFailure(final Throwable error) { super.doUnexpectedFailure(error); error.printStackTrace(); } The error it displayed me was

Re: OnFailure getting executed even though server code does not return any errors

2008-09-19 Thread Lothar Kimmeringer
Ryan schrieb: The error it displayed me was Type was not included in the set of types which can be serialized by this SerializationPolicy or its Class object could not be loaded. For security purposes, this type will not be serialized. What could be the cause of the error?? Have you

Re: OnFailure getting executed even though server code does not return any errors

2008-09-19 Thread Daniel Kurka
set the loglevel of your tomcat in embedded mode to a lower level an you will be seeing the exception regards daniel Ryan schrieb: danke lothar, I am running this application in the hosted modeand not on Tomcat. And I dont see any logs being generated for the application in the hosted

Re: OnFailure getting executed even though server code does not return any errors

2008-09-19 Thread Ryan
hi lothar, This project has still not been deployed to a tomcat server. I am still using the hosted mode and getting these errors. regards, Cherian --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web

OnFailure getting executed even though server code does not return any errors

2008-09-18 Thread Ryan
Hi everyone, I am facing a peculiar problem. I have a server class which returns me an EntityList object. The EntityList class is defined as follows public class EntityList extends ArrayListEntity Here Entity is a class which extends serializable public interface Entity extends Serializable

Re: OnFailure getting executed even though server code does not return any errors

2008-09-18 Thread Lothar Kimmeringer
Ryan schrieb: But on the client side instead of returning to onSuccess function the applications runs the onFailure function with the error http code of 500. HTTP-Code 500 means something went wrong on the server-side. Inside the log of the server there should be an error-message with a

Re: OnFailure getting executed even though server code does not return any errors

2008-09-18 Thread Ryan
Is this something to do with the Serializable class??? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To