• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

ANT script for running GWT application in hosted mode

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am getting some problems while running the application in hosted mode...

This is the ANT script for gwt-shell:

<target name="gwt-shell">
<java classname="com.google.gwt.dev.GWTShell" fork="true">
<classpath refid="classpathid" />
<arg value="-out"/>
<arg value="com.wf.calander.CatCalanderUI/CatCalanderUI.html"/>
</java>
</target>

And main page is not loading the hosted mode and getting the errors on the console...

[TRACE] Loading module 'com.wf.calander.CatCalanderUI'
[ERROR] Unable to find 'com/wf/calander/CatCalanderUI.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
[TRACE] The development shell servlet received a request for 'CatCalanderUI.html' in module 'com.wf.calander.CatCalanderUI.gwt.xml'
[TRACE] Loading module 'com.wf.calander.CatCalanderUI'
[ERROR] Unable to find 'com/wf/calander/CatCalanderUI.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?


Can you please help me..

/Vijay

 
Vijaykumar vemb
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Vijaykumar vemb wrote: Hi,

I am getting some problems while running the application in hosted mode...

This is the ANT script for gwt-shell:

<target name="gwt-shell">
<java classname="com.google.gwt.dev.GWTShell" fork="true">
<classpath refid="classpathid" />
<arg value="-out"/>
<arg value="com.wf.calander.CatCalanderUI/CatCalanderUI.html"/>
</java>
</target>

And main page is not loading the hosted mode and getting the errors on the console...

[TRACE] Loading module 'com.wf.calander.CatCalanderUI'
[ERROR] Unable to find 'com/wf/calander/CatCalanderUI.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
[TRACE] The development shell servlet received a request for 'CatCalanderUI.html' in module 'com.wf.calander.CatCalanderUI.gwt.xml'
[TRACE] Loading module 'com.wf.calander.CatCalanderUI'
[ERROR] Unable to find 'com/wf/calander/CatCalanderUI.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?


Can you please help me..

/Vijay




Why hosted mode browser not able to load the .gwt.xml file?
Can you please help me..

/Vijay
 
and POOF! You're gone! But look, this tiny ad is still here:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic