Since these classes are server-side only the GWT compiler should not
be considering them at all. What is curious is that on the server
side also I'm using some Spring jar files and GWT does not complain
about these. The application runs in spite of these errors, but
writing them to the console really slows down debugging.
My environment: GWT 2.0, Eclipse 3.5 (SpringSource Tool Suite), JDK
1.5
Thanks for any guidance you can give me.
I think there are client packages in your abc.jar. And GWT is giving
you warning about these client packages as on server there should not
be client packages.
Regards
Rohit
Since the above post I've changed this project so that a few files
from abc.jar now implement IsSerializable so they can be passed to the
client. As a result, abc is now a GWT module which I import into my
GWT app. Most of the functionality in abc.jar, however, is strictly
server side.
When I try to GWT compile my GWT app (using mvn gwt:compile) I now get
lots of import errors such as: No source code is available for type
java.io.InputStream; did you forget to inherit a required module?
This problem just became more urgent now as I cannot deploy to Tomcat
to test there.
Any help on this would be greatly appreciated.
The abc.jar does not include any client packages as far as I can
tell.
Since the above post I've changed this project so that a few files
from abc.jar now implement IsSerializable so they can be passed to the
client. As a result, abc is now a GWT module which I import into my
GWT app. Most of the functionality in abc.jar, however, is strictly
server side.
On Jan 6, 2:58 pm, Open eSignForms <yoz...@gmail.com> wrote:
Perhaps there is some kind of compiler configuration that is set too
aggressively. I'm pretty confident that I was able to GWT compile
this project using GWT 1.7.1 because I successfully deployed to
Tomcat. Was there a change from GWT 1.7.1 to 2.0 that might explain
this?