GWT exception : Deferred binding result type should not be abstract Or Rebind result must be a class
In GWT, when you get this error in hosted mode
Deferred binding result type should not be abstract
or
The following error while compiling
Rebind result must be a class
most likely you have forgot to extend your business interface from RemoteService. Therefore GWT engine is trying to instantiate the interface itself. That is , instead of
@RemoteServiceRelativePath("relativeServicePath")
public interface BusinessInterface extends RemoteService
you have written
@RemoteServiceRelativePath("relativeServicePath")
public interface BusinessInterface
2 Comments »
Leave a comment
-
Archives
- October 2009 (2)
- September 2009 (3)
- August 2009 (2)
- July 2009 (1)
- June 2009 (2)
- May 2009 (3)
- April 2009 (8)
- February 2009 (2)
- December 2008 (1)
- November 2008 (3)
- October 2008 (1)
- January 2008 (8)
-
Categories
-
RSS
Entries RSS
Comments RSS

It is exactly the other way around, but you have highlighted the right place in the code where the error comes from. Thank you.
Now the original post has been corrected and my previous comment is obsolete. Thanks again to the author for uncovering the cause of this error.