Bonjour,

Quelqu'un peut m'aider car je suis débutant en gwt.
quand j'exécute fichier mywebapp-shell.cmd, j'ai un message suivant :

[TRACE] Loading inherited module 'org.sempere.gwt.toolbox.core.toolbox-core'
[ERROR] Unable to find 'org/sempere/gwt/toolbox/core/toolbox-core.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
sachant que dans mon fichier .classpath, j'ai include ce fichier jar :

Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
	<classpathentry kind="src" path="src"/>
	<classpathentry kind="src" path="test"/>
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
	<classpathentry kind="lib" path="C:/travail/gwt-1.5.3/gwt-user.jar">
		<attributes>
			<attribute name="javadoc_location" value="file:/C:/travail/gwt-1.5.3/doc/javadoc/"/>
		</attributes>
	</classpathentry>
	<classpathentry kind="var" path="JUNIT_HOME/junit.jar"/>
	<classpathentry kind="lib" path="C:/travail/gdata/java/lib/gdata-spreadsheet-3.0.jar" sourcepath="C:/travail/gdata/java/src"/>
	<classpathentry kind="lib" path="C:/travail/commons-beanutils-1.8.3/commons-beanutils-1.8.3.jar"/>
	<classpathentry kind="lib" path="C:/travail/gwt-toolbox-0.1/dist/toolbox-core-0.1.jar"/>
	<classpathentry kind="lib" path="C:/travail/gwt-toolbox-0.1/dist/toolbox-utils-0.1.jar"/>
	<classpathentry kind="lib" path="C:/travail/gwt-toolbox-0.1/dist/toolbox-remoting-0.1.jar"/>
	<classpathentry kind="lib" path="C:/travail/gdata/java/lib/gdata-core-1.0.jar"/>



et dans mon fichier .xml, j'ai include le module :
Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
<module>
 
    <!-- Inherit the core Web Toolkit stuff.                        -->
    <inherits name='com.google.gwt.user.User'/>
 
    <!-- Inherit the default GWT style sheet.  You can change       -->
    <!-- the theme of your GWT application by uncommenting          -->
    <!-- any one of the following lines.                            -->
    <inherits name='com.google.gwt.user.theme.standard.Standard'/>
    <inherits name='org.sempere.gwt.toolbox.core.toolbox-core'/>
     .....
</module>

Quequ'un peut me dire quel est le problème ici?
et qu'est que je dois faire?

merci,