GWT Eclipse プラグインを使用してアプリを開発しています。(GWT Designer も使用していますが、ここに問題があるとは思いません)。以前、作成した Web サービスと通信する Java アプリケーションが必要だったとき、Sun の wsimport ツールを使用して WSDL URL から「スケルトン」クラスを生成しました。次に、生成されたクラスを Eclipse プロジェクトのクラス フォルダーに追加します。すべてうまくいきました。
ただし、これは GWT では機能していないようです。私はこれらを持っています:
VideoTutorialServiceService service = new VideoTutorialServiceService();
VideoTutorialService port = service.getVideoTutorialServicePort();
そして、私は赤で下線を引いており、エラーは次のように言っていVideoTutorialServiceService
ますVideoTutorialService
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.
.... 私はそれについてグーグルで検索しましたが、混乱しました。私はGWTの初心者です。どうすればこれを解決できますか?
ありがとう、よろしく、 Krt_Malta