The answer seems to be quite simple and I attach it below. Where do I contact someone so that this could be incorporated into the tutorial for those who are not using eclipse? It would save new users a lot of time and frustration.
GWT does NOT compile server-side source for you: you have to do it yourself and the compiled class files should reside in the same directories as their source files. To accomplish this, place the following in a command file named, say, server-compile.cmd: javac -cp "C:/gwt-windows-1.5.2/gwt-user.jar;C:/gwt-windows-1.5.2/gwt- dev-windows.jar;C:/gwt-windows-1.5.2/PROJECT/src" com\YOUR\PATH\server \*.java PROJECT = directory created by applicationCreated.cmd YOUR, PATH = package structure you chose Place this file in the 'src' directory, position the command prompt in this directory, and execute. The class files will be compiled and everything should now work. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
