I have a problem which arose when i changed my RCP to use a custom
object.
First my problem was that it could not find the type of this object.
Then i added a <source> tag to the gwt.xml file.
But now i have another problem when compiling the project. The error
is as following:

Compiling module org.yournamehere.Main
   Finding entry point classes
      [ERROR] Unable to find type
'org.yournamehere.client.MainEntryPoint'
         [ERROR] Hint: Previous compiler errors may have made this
type unavailable
         [ERROR] Hint: 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 simply do not understand why GWT cannot find my entrypoint class?
If it helps, my gwt.xml file looks like this:
<module>
  <source path="org.yournamehere.loginservice.IntranetResponse"/>
  <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="com.google.gwt.user.theme.chrome.Chrome"/> -->
  <!-- <inherits name="com.google.gwt.user.theme.dark.Dark"/> -->
  <entry-point class="org.yournamehere.client.MainEntryPoint"/>
  <!-- Do not define servlets here, use web.xml -->
</module>

Any ideas on how to solve this?

-- 
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.

Reply via email to