Re: Service per Servlet?

2010-03-29 Thread cetina
Thanks for your information. :) On Mar 28, 7:34 am, Dan danpr...@gmail.com wrote: You can have many methods in oneservice. It works fine for me, and is certainly less work. It would be a good idea for the methods in serviceImpl to call other methods to do the work, so the source for that

Service per Servlet?

2010-03-28 Thread cetina
Hi im a newbie in GWT and i have a very basic question. What im doing its create a 1 RPC Service ( GWTService, GWTServiceAsync and GWTServiceImpl) with many methods in GWTService and GWTServiceAsync and in the GWTServiceImpl i implement all of those methods, my question is this is correct or if

Re: Service per Servlet?

2010-03-28 Thread Dan
You can have many methods in one service. It works fine for me, and is certainly less work. It would be a good idea for the methods in serviceImpl to call other methods to do the work, so the source for that class doesn't get unmanageable. On Mar 26, 1:54 pm, cetina maxtorz...@gmail.com wrote: