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

2010-10-02 Thread George Georgovassilis
Hello David & al, The SL is also actively maintained - releases are not that frequent anymore though (there's not much to do) because of the high maturity grade. David wrote: Any other feedback about this ? What's odd is that we are still asking this very same question after several years of

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

2010-10-01 Thread Jason Hatton
Great I will take a look. This area of GWT is moving pretty fast. A couple the projects mentioned by David are new to us since we have started development including gwt-platform. We like gwt-dispatch but we are crazy about the number for little libraries we are using for the full stack. gwt-pl

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

2010-10-01 Thread PhilBeaudoin
All the samples that come with gwt-platform uses UI Binder (and @UiHandler), check the samples repo: http://code.google.com/p/gwt-platform/source/browse?repo=samples A larger example is PuzzleBazar: http://code.google.com/p/puzzlebazar/ They all use gin. Cheers, Philippe On Sep 30, 2:33 pm

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

2010-09-30 Thread Jason Hatton
I took a brief look at gwt-platform. I didn't see examples where the GWT 2.0 UI binding capability is used. We are successfully using this with Gin. Do you know of examples that include the use of UI Binder? On Thu, Sep 30, 2010 at 2:35 PM, PhilBeaudoin wrote: > Many gwt-platform [1] users hav

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

2010-09-30 Thread PhilBeaudoin
Many gwt-platform [1] users have also successfully integrated its dispatch module with Spring. The next version (0.5), planned in a month or so, will add built-in support for Spring. It will also make it easy and seamless to switch the backing service for your various server actions. (Some can use

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

2010-09-30 Thread Jason Hatton
I honestly can't weigh in on all of these framesworks. Gwt-dispatch is maintained and is pretty light weight and extensible which we have extended ourselves to add Spring support. Looks like the latest version adds that in for anyone needing it. We have also extended it to lessen the burden of c

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

2010-09-30 Thread Jeff Larsen
On Sep 30, 12:22 pm, David wrote: > Any other feedback about this ? > What's odd is that we are still asking this very same question after > several years of existence of both frameworks, don't you think ? > > So, we have : > - GWT SL > - Spring4GWT > - Gwt-dispatch > - gwt-spring > > (My) Quest

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

2010-09-30 Thread David
Any other feedback about this ? What's odd is that we are still asking this very same question after several years of existence of both frameworks, don't you think ? So, we have : - GWT SL - Spring4GWT - Gwt-dispatch - gwt-spring (My) Questions are : - which of them are still maintained ? - which

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

2010-09-20 Thread Jason Hatton
Hey lalit, I will take a look at this further this was and example of how to implement Spring on a previous version and is basically the servlet example class I posted earlier. I will take a look at the newer version of gwt-dispatch to see what else has been included. We were waiting on upgradin

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

2010-09-16 Thread lalit
Hi Jason, I agree that both the approaches are same. But I still have a feeling that gwtDispatch uses Spring MVC infra to do its job. The code that you have posted above has WebApplicationContext. Also I looked into gwtDispatch code and it seems it is using Spring MVC infra. The code I looked into

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 lalit
Deepak - I have used the following structure SpringApplicationContext, SpringGwtRemoteServiceServlet , PersonServiceImpl go into the server side code. The interfaces PersonService and PersonServiceAsync become part of GWT client side code. Regarding wsdl files consumption see the section on

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: GWT Spring integration - what is the best method in late 2010?

2010-09-15 Thread Deepak Singh
Hi Lalit, Could u pls explain the package structure i.e. which file should be placed in which package. And if possible can u guide a bit to consume web services(wsdl files) and data binding. Thanks Deepak On Wed, Sep 15, 2010 at 11:55 AM, lalit wrote: > Approach based on Spring4Gwt project > >

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

2010-09-14 Thread lalit
Approach based on Spring4Gwt project http://www.lalitbhatt.com/tiki-index.php?page=Integration+GWT+with+Spring -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To un

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

2010-09-14 Thread Spud Demon
On Sep 8, 2:16 pm, Deepak Singh wrote: > Hi Mark, > > yes i refreshed the page but no luck. Also googling could not find an aswer > needed. > > Later i changed from jdk 1.6 to jdk 1.5 then i got a different error as > follows : > > SEVERE: Context initialization failed > org.springframework.beans.

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

2010-09-14 Thread Deepak Singh
i did all possible things to resolve the issue but could not. I made it sure that i compile and run with same version. i did with jdk 1.5 compile/ run and also again jdk 1.6 compile/run. But noyhing worked. Is this gwtrpc-spring is compatible with Gwt2.1m2 and spring 3.0 ? 2010/9/14 yeti > at

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

2010-09-14 Thread yeti
at first glance, "UnsupportedClassVersionError: Bad version number in .class file " Maybe there was something wrong with your higher complier but runs in lower jvm On 9月11日, 上午7时16分, Deepak Singh wrote: > Any solution pls. > I am stuck with the error. > > On Wed, Sep 8, 2010 at 11:46 PM, Deepa

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

2010-09-10 Thread Deepak Singh
Any solution pls. I am stuck with the error. On Wed, Sep 8, 2010 at 11:46 PM, Deepak Singh wrote: > Hi Mark, > > yes i refreshed the page but no luck. Also googling could not find an aswer > needed. > > Later i changed from jdk 1.6 to jdk 1.5 then i got a different error as > follows : > > SEVERE

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

2010-09-08 Thread Deepak Singh
Hi Mark, yes i refreshed the page but no luck. Also googling could not find an aswer needed. Later i changed from jdk 1.6 to jdk 1.5 then i got a different error as follows : SEVERE: Context initialization failed org.springframework.beans.factory.CannotLoadBeanClassException: Error loading class

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

2010-09-08 Thread markM
When you got this error did you hit F5 (assuming you're using I.E.) to refresh the browser? And did that help? Maybe try a project-clean? Also, have you tried googling the error you got to see what it means? On Sep 8, 5:36 am, Deepak Singh wrote: > I also downloaded SimpleGwtRpcSpringExample an

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: GWT Spring integration - what is the best method in late 2010?

2010-09-08 Thread Deepak Singh
I also downloaded SimpleGwtRpcSpringExample an dimported this into my eclipse 3.5 with jdk 1.6 but i could not run it. I got the exception com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: This application is out of date, please click the refresh button on your browser. ( Expectin

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

2010-09-03 Thread markM
Sam/George, Just started looking into this same thing about a month ago. My experience was as follows. I found that the Spring documentation references the GWT Server Library so it must be the official pathway correct? I tried to use the inheritance methodology, one of three the GWT Server Libr

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

2010-09-03 Thread magat
Hi, I recently used Spring to instanciate my RPC services impls, and I followed the approach described here : http://technophiliac.wordpress.com/2008/08/24/giving-gwt-a-spring-in-its-step/ Hope that helps, On 3 sep, 09:12, Alek wrote: > Hi, > > We also use SL for our project. I configured this

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

2010-09-03 Thread Alek
Hi, We also use SL for our project. I configured this solution once and forgot about it. Respect On Aug 31, 11:24 pm, George Georgovassilis wrote: > Hi Sam, > > The SL [1] is a community maintained integration of Spring and GWT > mainly focused at exporting Spring managed beans as RPC services.

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

2010-09-01 Thread Jeff Larsen
Take a look at gwt-dispatch. There is a version where spring can be used on the backend. Creating RPCs with the *Service/*ServiceAsync is not considered a best practice. Gwt-Dispatch http://code.google.com/p/gwt-dispatch/ Spring server side code (I believe) http://code.google.com/p/gwt-dispatch-s

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

2010-08-31 Thread George Georgovassilis
Hi Sam, The SL [1] is a community maintained integration of Spring and GWT mainly focused at exporting Spring managed beans as RPC services. It was launched four years ago and has reached through many releases a high degree of maturity. The documentation is extensive, it's easy to use (though I'm

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

2010-08-31 Thread Sam
Note: this thread is about using Spring for your service impls in a GWT app (it's not about integrating Spring MVC or using ROO. It's also not about Guice) There are a few posts on this but it's hard to tell what the best method is today. The two contenders seem to me to be: 1) http://code.googl