i am in this situation:

@RemoteServiceRelativePath("create_event") 
public interface CreateEventService extends RemoteService { 
    String[] createeventServer(LinkedList<LinkedList<String>> input) throws 
IllegalArgumentException; 
}



public interface CreateEventServiceAsync {
    void createeventServer(LinkedList<LinkedList<String>> input, 
AsyncCallback<String[]> callback) throws IllegalArgumentException;
}



public class CreateEventServiceImpl extends RemoteServiceServlet implements 
CreateEventService {
    public String[] createeventServer(LinkedList<LinkedList<String>> input) 
throws IllegalArgumentException { 
        String[] arr = new String[2];
        ... return arr;
    }
}



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 google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
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