Re: GWT Spring integration - what is the best method in late 2010?

2010-10-01 Thread Jason Hatton
; > A larger example is PuzzleBazar: > http://code.google.com/p/puzzlebazar/ > > They all use gin. > > Cheers, > > Philippe > > > On Sep 30, 2:33 pm, Jason Hatton wrote: > > I took a brief look at gwt-platform. I didn't see examples where the GWT > >

Re: GWT Spring integration - what is the best method in late 2010?

2010-09-30 Thread Jason Hatton
rpc's, some can use REST, etc.) The > latter is already available in the trunk, although it's likely to > change before the release. > > Cheers, > > Philippe > > [1] http://gwtplatform.com > > > On Sep 30, 10:59 am, Jason Hatton wrote: > > I

Re: GWT Spring integration - what is the best method in late 2010?

2010-09-30 Thread Jason Hatton
(My) Questions are : > - which of them are still maintained ? > - which of them do provide a compatibility with the latest versions of > GWT and Spring ? > - which of them are non intrusive ? > > David > > On 20 sep, 23:41, Jason Hatton wrote: > > Hey lalit, > &g

Re: GWT and MCV

2010-09-24 Thread Jason Hatton
MVC isn't ideal for rich client applications that are heavily event oriented. Too much ceremony for not a lot of value add to that testability is harder with MVC. With MVP you can get near 100% coverage by having everything in the presenter and keep to the practice of the View only holds UI widge

Re: GWT Spring integration - what is the best method in late 2010?

2010-09-20 Thread Jason Hatton
t; Another thing you mentioned in your mail that you do not have to code > two interfaces which looked interesting. If possible can you elaborate > on that? We would like to incorporate that in our approach also if > possible. > > thanks, > > > On Sep 16, 7:15 pm, Jason Hat

Re: GWT Spring integration - what is the best method in late 2010?

2010-09-16 Thread Jason Hatton
Lalit we are not using Spring MVC. We am using gwt-dispatch and have extended that project's dispatch servlet to get the Spring integration. We then added a custom annotation to pick up the appropriate dispatch action handler for a particular GWT-RPC on the server side. All of our GWT-RPC calls

Re: GWT Spring integration - what is the best method in late 2010?

2010-09-15 Thread Jason Hatton
I would highly suggest going back to my recommendation, lalit's idea is good but, my example is more complete, takes less effort to implement and is easier to extend. Especially with the use of gwt-dispatch and implementation of a GWT architecture pattern implementation from the Google I/O talk o

Re: how to transmit an image over rpc?

2010-09-08 Thread Jason Hatton
We use REST endpoints for images and populate DTOs on GWT rpc callbacks that have the URIs. Very easy way to achieve the goal. We have also done this with PDFs. On Wed, Sep 8, 2010 at 8:04 AM, aditya sanas <007aditya.b...@gmail.com>wrote: > Hello, > i think u got it right. > u can implement it

Re: GWT Spring integration - what is the best method in late 2010?

2010-09-08 Thread Jason Hatton
We haven't used gwt-spring. We are using gwt-dispatch with an implementation of their DispatchService interface and a subclass of the GWT RemoteServiceServlet class. We have had no issues with this. Then just had this servlet in like you would any other. It looks like this: public class Standa

Re: Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-19 Thread Jason Hatton
e but, I am sure it can be done. Jas On Mon, Apr 19, 2010 at 10:53 AM, keyboard_samurai wrote: > awesome do we have a article how to get this done ??? > > and also does it gets integrated with eclipse ? > > Regards, > -Yogesh > > On Apr 19, 8:45 pm, Jason Hatton wrote:

Re: Rounded Corners with UIBinder

2010-04-19 Thread Jason Hatton
Take a look at the DecoratorPanel. It implements a 9-box and you should be able to use css to override the defaults. http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/gwt/user/client/ui/DecoratorPanel.html On Fri, Apr 16, 2010 at 12:15 AM, Jonny wrote: > So given that CSS is

Re: Using Oracle and Hibernate in Google Web Toolkit's Hosted Mode.

2010-04-19 Thread Jason Hatton
You will get that with just GWT. On Mon, Apr 19, 2010 at 9:55 AM, keyboard_samurai wrote: > Then do you replace tomcat with GAE ? i want to have the benefits of > Hosted mode i.e auto compile and debug ??? > > > > On Apr 19, 5:32 pm, Sripathi Krishnan > wrote: > > Disable Google App Engine in y

GWT/Hibernate/Oracle/Eclipse

2010-03-31 Thread Jason Hatton
Read the developer's guide :). There is a white list of classes for both Google App Engine and Web Tool Kit. You have run into that restriction. You will probably have issues with trying to use Hibernate. If you are using Google App Engine you will have to you use App Engine's JDO or JPA imple

Re: GWT/Hibernate/Oracle/Eclipse

2010-03-31 Thread Jason Hatton
Read the developer's guide :). There is a white list of classes for both Google App Engine and Web Tool Kit. You have run into that restriction. You will probably have issues with trying to use Hibernate. If you are using Google App Engine you will have to you use App Engine's JDO or JPA imple