Hi OP, I have never seen this problem, but you should check one thing: Do you see a message like the following when running in hosted mode?
[WARN] Server class '[some classe name here]' could not be found in the web app, but was found on the system classpath [WARN] Adding classpath entry 'file:[some path]/[library].jar' to the web app classpath for this session If you do, it means that you forgot to put some dependent classes into your war/WEB-INF/lib directory. Check out this: http://google-web-toolkit.googlecode.com/svn/trunk/distro-source/core/src/doc/helpInfo/webAppClassPath.html The other thing that looks strange to me is that the missing method exception (org.restlet.Client.handle(Lorg/restlet/Request;)Lorg/restlet/Response;) complains about the Client class. Are you actually using your server-side to connect other REST-servers? Because if not, then I do not see why there is a reference to the Client-class in your sever-side code. (I could be wrong here. Somebody. please correct me.) BTW, if you don't really need tomcat for your project: try using the built-in jetty. I found it far easier to work with than tomcat. Hope this helps, best regards, Stefan ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2606037

