Re: GWT RPC and GoDaddy

2010-05-24 Thread gengstrand
You need to run with JRE 1.5 and GWT 1.6 On May 23, 11:56 am, Mike Apolis wrote: > I'm not sure what this has to do with SSO?  I'm not authenticating any > user.  Its the GWT sample stockwatcher app, there are no users to > authenticate :) > > Since Mac OSX has problems with more than one JRE.

Re: What's the best/easiest way of doing server-side persistence with GWT?

2010-05-20 Thread gengstrand
Be advised that Gilead used to be called hibernate4gwt and still supports only hibernate. Check out the latter half of http://www.dynamicalsoftware.com/gwt if you want to learn about some more DTO assemblers used in solving the ORM / GWT-RPC incompatibility problem. On May 20, 3:08 am, José Gonzál

Re: New to GWT

2010-05-16 Thread gengstrand
Take a look at GWT in Practice by Robert Cooper and Charles Collins. http://www.goodreads.com/review/show/102998687 Pro Web 2.0 Application Development with GWT by Jeff Dwyer. http://www.goodreads.com/review/show/103003031 Both of these books are about GWT version 1.6 Enjoy! On May 13, 6:03 

Re: GWT + app engine: how do I avoid double-work?

2010-04-28 Thread gengstrand
Interesting. In my own research ( see http://www.dynamicalsoftware.com/java/cloud/jdo ), I currently recommend JDO over JPA due to my own findings on data store maturity with various cloud-based back-ends. I am curious as to the findings of others. If you were starting a project today and you wan

Re: GWT + app engine: how do I avoid double-work?

2010-04-23 Thread gengstrand
Twig-Persist is GAE only. JDO is useful for when you want to build a GWT app that could either run against an RDBMS, GAE, or EC2. With JDO, you get more deployment choices. However, the down side is all the extra coding associated with implementing the DTO pattern which is usually the answer to th

Re: GWT MVP

2010-04-17 Thread gengstrand
find the informations. > Can you please tell me where to look on the page ? > > thx and greets > > Al > > 2010/4/16 gengstrand > > > > > I covered the differences between MVP and MVC in this presentation. > > >http://www.dynamicalsoftware.com/gwt > >

Re: GWT MVP

2010-04-16 Thread gengstrand
I covered the differences between MVP and MVC in this presentation. http://www.dynamicalsoftware.com/gwt I hope that helps. On Apr 15, 5:23 am, Sabbir wrote: > i am having quite a difficulty in understanding MVP in gwt. Can > anybody suggest a good example easy one -- You received this messag

Re: Can someone brief out about MVP

2010-03-29 Thread gengstrand
In MVC, the model is heavy with business rules and data access, the view contains the presentation logic, and the controller is typically a framework component with an XML configuration to drive it. In MVP, the model is lightweight POJO value objects, the view is mockable, and the presentation is s

Re: GWT Grid vs. SmartGWT grid

2010-03-16 Thread gengstrand
The Grid class from GWT is a layout handler and not a GUI widget at all. I suspect that you are looking for some kind of data table GUI widget control. The ListGrid control from the SmartGWT project has all the nice bells and whistles but the download can be less than snappy. I don't think that it

Re: GWT Integration with Acegi or other libraries

2010-02-16 Thread gengstrand
http://code.google.com/p/tocollege-net/ also demonstrates how to integrate with acegi. On Feb 15, 10:06 pm, Shyam Visamsetty wrote: > Hi, > > I would like to know if GWT can be integrated with Acegi. I have read > the link below. But, looking for more detailed information. > > http://code.google.

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-16 Thread gengstrand
It looks like we're having a little bit of a flame war going here. Our current KATO demo ( see http://myjsp.dynamicalsoftware.com/kato ) uses SmartGWT and, though not perfect, the default eye candy does look nice and we will most probably stay with SmartGWT. Those who are in Birmingham, AL might

Re: username/password when using GAE

2010-02-13 Thread gengstrand
First, take a look at this article and see if it covers your needs. This is the official position on GAE and authentication. http://code.google.com/appengine/articles/auth.html If that's not going to cut it for you, then take a look at http://www.mindrot.org/projects/jBCrypt/ If you were using G

Re: Ext/GXT/ExtGWT v2.1.0 vs. SmartGWT v2.0

2010-02-03 Thread gengstrand
I noticed that SmartGWT doesn't support the iPhone whereas GWT does. This surprised me because SmartGWT does work when using Safari on either PC or Mac. How do GXT apps work when surfed to by an iPhone? On Feb 3, 10:24 am, Tercio wrote: > You know guys, this is a tough decision. We all differ

Re: GWT hosting

2010-01-22 Thread gengstrand
While it is true that you could just use the javascript generated by GWT and hook it to any back end (assuming that you are using REST or POX and not GWTRPC), the real value add in using GWT is with J2EE development. Otherwise, you could just use one of the other great RIA JS libraries such as jQue

Re: about the limitation of MVC

2010-01-22 Thread gengstrand
Take a look at http://java.sun.com/j2se/1.4.2/docs/api/java/beans/PropertyChangeSupport.html On Jan 20, 7:42 am, "yu.cu...@126.com" wrote: > Hi, > Recently I am researching the MVC in GWT and meet a problem. According > to my understanding, in essentially, the benefits of MVC are 1) > decouple t