Possible Duplicate:
GWT module may need to be (re)compiled REDUX
I have created a gwt project with eclipse and when I try this project in debug mode ( with GWT's server ) it works.
But when I tried to deploy apache tomcat server, this error message is displaying :
The page at localhost:8080 says: GWT module 'gwtfileupload' may need to be (re)compiled
i used this tutorial to accomplish the deployment : https://wiki.auckland.ac.nz/display/BeSTGRID/Deploying+GWT+to+Tomcat+in+Eclipse
here's the "warbuilder.xml" :
<target name="default" depends="buildwar,deploy"></target>
<target name="buildwar">
<war basedir="war" destfile="gwtfileupload.war" webxml="war/WEB-INF/web.xml">
<exclude name="WEB-INF/**" />
<webinf dir="war/WEB-INF/">
<include name="**/*.jar" />
</webinf>
</war>
</target>
<target name="deploy">
<copy file="gwtfileupload.war" todir="." />
</target>
here's the project tree
|gwtfileupload
|-src
|---com
|-----hsn
|-------demo
|---------gwtfileupload
|-----------client
|-------------------GWTFileUpload.java
|-----------server
|-------------------FileUploadServlet.java
|-war
|---gwtfileupload.css
|---gwtfileupload.html
|---WEB-INF
|-----web.xml
|-----lib
|---------commons-fileupload-1.2.1.jar
|---------gwt-servlet.jar
|---------commons-io-1.4.jar
here's the war file tree
|-gwtfileupload.html
|-gwtfileupload.css
|-META-INF
|---MANIFEST.MF
|-WEB-INF
|---web.xml
|---lib
|------commons-fileupload-1.2.1.jar
|------gwt-servlet.jar
|------commons-io-1.4.jar
|------gwtfileupload.jar
|-gwtfileupload
|---clear.cache.gif
|---gwtfileupload.nocache.js
|---hosted.html
|---gwt
|-----standard
|-------images
|---------ie6
Could you help me to fix this problem?