You need to work on carefully separating classes that will be compiled by the GWT compiler from those that will not. Classes shared between server and client are in the first category. Isolate those under the / client folder before you try to configure your module. Then you won't need any <source> tags. If they cannot be isolated under a single path, then you will need <source> tags, but it will still be true that any location on the source path for the compile must not contain classes unsuitable for the GWT compiler.
Walden On Oct 7, 4:19 pm, Shi <[EMAIL PROTECTED]> wrote: > Changing the file: > <entry-point class="gwt.client.GwtApplication"/> > <source path="to"/> > <source path="dao"> > <source path="gwt/client"/> > <source path="gwt/server"/> > <source path="gwt/public"/> > <stylesheet src="js/ext/resources/css/ext-all.css"/> > <script src="js/ext/adapter/ext/ext-base.js"/> > <script src="js/ext/ext-all.js"/> > <servlet class="gwt.server.ComunicationServiceImpl" path="/ > comunication"/> > <stylesheet src="GwtApplication.css"/> > > the error is: > Compiling module gwt.GwtApplication > Computing all possible rebind results for 'gwt.client.GwtApplication' > Rebinding gwt.client.GwtApplication > Checking rule <generate-with > class='com.google.gwt.user.rebind.ui.ImageBundleGenerator'/> > [ERROR] Unable to find type 'gwt.client.GwtApplication' > [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 > [ERROR] Build failed > > I do not understand .. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---