javac -classpath c:\gwt\gwt-windows-1.1.0\gwt-user.jar;.
com\eastlandeng\ordpro\gwt\server\*.java
When I do, I get the following 2 error messages:
c:\gwt\gwt-windows-1.1.0\gwt-user.jar(com/google/gwt/user/client/rpc/RemoteService.java):21:
class RemoteService is public, should be declared in a file named
RemoteService.java
(source unavailable)
c:\gwt\gwt-windows-1.1.0\gwt-user.jar(com/google/gwt/user/client/rpc/IsSerializable.java):21:
class IsSerializable is public, should be declared in a file named
IsSerializable.java
(source unavailable)
2 errors
This worked wit gwt-1.0.21. What am I missing?
Perhaps try something like this?
javac -classpath c:\gwt\gwt-windows-1.1.0\gwt-user.jar -sourcepath .
com\eastlandeng\ordpro\gwt\server\*.java
Does this work?
Scott
That solved the problem. Thanks.
Mike