Re: GWT Project Structure Frontend/Backend

2011-06-21 Thread Ramon Salla
Yes. We are already doing this. We started using RequestBuilder and Json (Des)Serialization but we ended up using plain RPC services as development is so much easier. We are wrapping some of those RPC services with REST using jersey. We have two dependent projects one with server code and the

Re: GWT Project Structure Frontend/Backend

2011-06-21 Thread Elhanan Maayan
i'm unfamiliar with SOP and gwt policy files, i havn't tried much of rpc aside form the fact that each service should only object of input and object of output both extending RequesInput and RequestOutput interfaces (generic wise) to avoid break method signature incase of changes . i then moved

Re: GWT Project Structure Frontend/Backend

2011-06-21 Thread Juan Pablo Gardella
You can use gwt-dispatch if you use RPC. 2011/6/21 Elhanan Maayan elh.mailg...@gmail.com i'm unfamiliar with SOP and gwt policy files, i havn't tried much of rpc aside form the fact that each service should only object of input and object of output both extending RequesInput and

GWT Project Structure Frontend/Backend

2011-06-09 Thread Gambo
Hi, Does somebody already have some experience embedding gwt in other client pages except the standard html file? I want to use gwt as front end and grails as backend. Communication should be handled over rest json interface. How do i structure my project at best? Should I create 2 independend