Import package problem in GWT

Posted by Krt_Malta on Stack Overflow See other posts from Stack Overflow or by Krt_Malta
Published on 2010-03-31T18:02:03Z Indexed on 2010/03/31 18:03 UTC
Read the original article Hit count: 364

Filed under:
|

Hi!

I'm developing an app using GWT Eclipse plug-in. (I'm also using GWT Designer but I don't think the problem is here). Previously when I wanted to communicate with a web service I created, I produced the "skeleton" classes from the WSDL url using Sun's wsimport tool. Then I would add the classes generated to a class folder in my Eclipse project. All worked well.

However this doesn't seem to be working with GWT. I have these:

VideoTutorialServiceService service = new VideoTutorialServiceService();
VideoTutorialService port = service.getVideoTutorialServicePort();

and I have VideoTutorialServiceService and VideoTutorialService underlined in red, the error saying videotutorialservice.VideoTutorialServiceService can not be found in source packages. Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly.

.... I googled about it but I got confused. I'm a beginnier in GWT. How can I resolve this please?

Thanks and regards, Krt_Malta

© Stack Overflow or respective owner

Related posts about gwt

Related posts about package