I looked in the classpath tab in eclipse but couldnt see gwt-user.jar
or gwt-dev-platform.jar just the "GWT SDK 1.7.0" (which wasnt
expandable) and which I assumed replaced them.
I downloaded them anyway, and added them manually, but it didn't
remove the error.
I do believe all my project modules are listed fine...I'm referencing
too other projects and there not giving any seperate errors. (but each
project is flagging the lack of XML separately)
I also notice all 3 of them are flagging a warning;
Module declares a servlet class
'com.google.gwt.libideas.logging.server.RemoteLoggingServiceImpl', but
the web.xml has no corresponding declaration; please add the following
lines to your web.xml:
<servlet>
<servlet-name>remoteLoggingServiceImpl</servlet-name>
<servlet-
class>com.google.gwt.libideas.logging.server.RemoteLoggingServiceImpl</
servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>remoteLoggingServiceImpl</servlet-name>
<url-pattern>/SpiffyResources/logging</url-pattern>
</servlet-mapping>
I'm not using servlets, and none of my module xml isnt specifying
them :-/
I'm getting the impression here that with the change over its somehow
reading default information from ...somewhere...rather then my own
*.gwt.xml files.
Is that possibly?
Heres my main module xml;
<module rename-to='Rateoholic_Frame'>
<!-- 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="com.google.gwt.xml.XML"/>
<inherits name='com.google.gwt.widgetideas.WidgetIdeas' />
<inherits name='com.google.gwt.libideas.LibIdeas' />
<inherits name='com.google.gwt.widgetideas.GWTCanvas'/>
<!-- <inherits name='gwt.canvas.gwt-canvas'/> -->
<!-- Specify the app entry point class.
-->
<entry-point class='com.darkflame.client.Rateoholic_Frame'/>
<!-- Specify the application specific style sheet.
-->
<stylesheet src='Rateoholic_Frame.css' />
</module>
Thanks.
On Jul 31, 8:19 pm, Rajeev Dayal <[email protected]> wrote:
> A few questions
> -Can you post the source of the main module file that you're running?
>
> -Can you view your launch configuration, and ensure that all of your project
> modules that you expect are listed on the GWT tab?
>
> -Can you view your launch configuration's classpath? Expand the GWT
> Classpath container, and ensure that both gwt-user.jar and
> gwt-dev-platform.jar are listed there.
>
> Rajeev
>
>
>
> On Fri, Jul 31, 2009 at 12:12 PM, darkflame <[email protected]> wrote:
>
> > I've started to get lots of XML errors flagging when I try to compile.
> > It seems it cant find the source code for various bits of XML
> > handeling;
>
> > [ERROR] Line 1486: No source code is available for type
> > com.google.gwt.xml.client.Document; did you forget to inherit a
> > required module?
> > [ERROR] Line 1486: No source code is available for type
> > com.google.gwt.xml.client.XMLParser; did you forget to inherit a
> > required module?
> > [ERROR] Line 1490: No source code is available for type
> > com.google.gwt.xml.client.NodeList; did you forget to inherit a
> > required module?
> > ...
> > etc.
>
> > Yet, I *do* have;
>
> > <inherits name="com.google.gwt.xml.XML"/>
>
> > In my module files.
> > What gives?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---