I created a project using GWT Eclipse plugin and then did some renaming and reorganization, but after that the onModuleLoad of my EntryPoint is not called. No error or warning is produced.
In the war directory I have base.html file. It contains the line: <script type="text/javascript" language="javascript" src="base/ base.nocache.js"></script> In the src directory there is a file "clientspecific/base.gwt.xml": <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.7.1// EN" "http://google-web-toolkit.googlecode.com/svn/tags/1.7.1/distro- source/core/src/gwt-module.dtd"> <module rename-to='base'> <!-- 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='com.google.gwt.user.theme.chrome.Chrome'/> --> <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> --> <!-- Other module inherits --> <inherits name='ktechnology.client.clientspecific.gwt.KTFGwtClient'/ > <!-- Specify the app entry point class. --> <entry-point class='clientspecific.client.BaseTemplate'/> </module> But the entry-point class is not loaded. If I put any random text as the class, no error is produced. If I put random text to inherits name, error is reported, but in entry point not. In web mode both errors are reported, but even in case of correct class, it does not work. I use GWT 1.7.1. Thanks for any help. Viliam --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
