Uros, If you are using GWT style RPC you won't be able to decouple the client/server relationship as the GWT compiler needs to know about (and compile) both sides in order for the application to be built. You may want to take a look at GWT's RequestBuilder class (link below) that allows you to build GWT based client apps that communicate with a server that may or may not be GWT based and are ultimately compiled and deployed without having to do the same with the server.
RequestBuilder Class http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/http/client/RequestBuilder.html Thanks, - Chris On Wed, Oct 7, 2009 at 1:23 PM, Uros Trebec <[email protected]> wrote: > > Hi there! > > I was wondering if there is in any way possible to package and deploy > GWT-RPC servlet as a stand-alone WAR application, without client side > JS & resources? > > Basically what I want to do is have a client-side JS & resurces > deployable separately from the servlet, so the servlet application > wouldn't be redeployed every time I compile and deploy generated JS. > > Any suggestions? > > Best regards, > Uros > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
