java - GWT: Unable to find GWTModule/gwt/xml.gwt.xml -


when try compile eclipse dynamic web application uses gwt, following error message:

[error] unable find 'gwtmodule/gwt/xml.gwt.xml' on classpath; typo, or maybe forgot include classpath entry source?

i can't figure out causing problem. eclipse build path contains next other gwt-unrelated jars/libs gwt sdk (2.1.0).

my gwtmodule.xml:

<?xml version="1.0" encoding="utf-8"?> <!doctype module public "-//google inc.//dtd google web toolkit 2.1.0//en" "http://google-web-toolkit.googlecode.com/svn/tags/2.1.0/distro-source/core/src/gwt-module.dtd"> <module>     <inherits name="com.google.gwt.user.user" />     <source path="client"/>     <entry-point class="gwttest.ui.client.testui" /> </module> 

the environments classpath variable not set, because of this problem

i encountered similar problem new gwt project, there project compiled - error message showed @ runtime in gwt log...

my system:

  • windows xp
  • eclipse java ee 3.6 (helios) gwt plugin
  • gwt 2.1.0
  • java ee / jdk 1.6.0

your gwtmodule.xml should gwtmodule.gwt.xml unless that's error in question.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -