> > <inherits name="org.sempere.gwt.toolbox.core.toolbox-core"/> > <inherits name="org.sempere.gwt.toolbox.remoting.toolbox-remoting"/ >
Are these two regular java packages? Or have you create jar files for each of these? In GWTs module.xml, you don't inherit java packages. You inherit other modules. The path that you provide (org.sempere.gwt.toolbox.core.toolbox-core) must have a corresponding .gwt.xml file. You should go through this document - http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html#DevGuideModules Second, GWT works on java source files and not compiled class files. Also, by default, it expects these java files to be present under the "client" sub-package. Your package org.sempere.gwt.toolbox.core.toolbox-core *can*work, but it is better that you stick to conventions and introduce a client sub-package. --Sri On 12 April 2010 19:17, dev_web_fr <[email protected]> wrote: > Hi, > I have a pb : when i run the file mywebapp-shell.cmd on shell mode, i > have this error : > [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? > > Or, in my file mywebapp.xml > > <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"/> > <inherits name="org.sempere.gwt.toolbox.remoting.toolbox-remoting"/ > > > <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -- > > > <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -- > > > ..... > > </module> > > and , in my file .classpath > > <?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"/> > <classpathentry kind="lib" path="C:/travail/gwt-2.0.3/gwt- > servlet.jar"/> > <classpathentry kind="lib" path="C:/travail/gwt-2.0.3/gwt-dev.jar"/> > <classpathentry kind="lib" path="C:/travail/guice-snapshot20081123/ > aopalliance.jar"/> > <classpathentry kind="lib" path="C:/travail/guice-snapshot20081123/ > guice-servlet-snapshot20081123.jar"/> > <classpathentry kind="lib" path="C:/travail/guice-snapshot20081123/ > guice-snapshot20081123.jar"/> > <classpathentry kind="con" > path="com.google.gwt.eclipse.core.GWT_CONTAINER"/> > <classpathentry kind="con" > path="com.google.appengine.eclipse.core.GAE_CONTAINER"/> > <classpathentry kind="output" path="bin"/> > </classpath> > > > help me, please > regards, > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-web-toolkit%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
