I am trying to build a simple gwt project that fetches tweets and displays them.The server passes back the tweets of type twitter4j.Tweet to the client. Both modules import twitter4j.Tweet. But when I run I get the following error: --- ERROR: Line 37: No source code is available for type twitter4j.Tweet; did you forget to inherit a required module?. I seem to have problems in inheriting twitter4j. All the posts I have seen about inheriting a jar file are not clear about how to do so. I understand I must write an inheritance instruction into gwt.xml file, something like --- but if I try --- it does not work. Can anyone please explain?
In a post I found on the Web one person suggested not to inherit it but: -- Don't put twitter4j to your gwt.xml. Just add it your project class path. and make all functionalities like status updating and all in your serviceImpl. Try
This confuses me even more. I have added the jar file to my project libraries. But it does not work I suspect I am missing something quite elementary here, but I am totally stuck. Is there something like a GWT path? Many thanks for any help