Wel afther hours of thinking and praying I figured it out. It was a combination of problems.
First I needed to add <source path="..."> to the module descriptor, and offcourse the classes I needed were in upwards packages. (There is a workaround for it by creating a new fake module descriptor in the root of your project, import the classes with <source> and in your real module descript you can add the fake descriptor file with inherits. Then: Type 'com.test.client.AbstractType' was not serializable and has no concrete serializable subtypes I needed to add the conreteType and the abstractType of a class that was used in DiscoveredEndpoint with <source>. DOESN'T WORK: <source path='model/endpoints/address' includes='**/AddressImpl.java’ / > <source path='model/endpoints/address' includes=' **/Address.java'/> WORKS: <source path='model/endpoints/address' includes='**/ ZigbeeAddress.java, **/Address.java'/> And now it works :) Thank you and I hope this post helps someone else too. Iluna --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
