Re: GWT Page flows - want to start a open source project - thoughts

2011-07-31 Thread Brian Reilly
As promised, I committed my gwt-multipage changes (to a branch) and attached a test jar (gwtmultipage-core-20110731.jar) to the issue: http://code.google.com/p/gwt-multipage/issues/detail?id=21. It's not an official release yet, but that's the jar that I've been using it in production with GWT 2.3

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-31 Thread Juan Pablo Gardella
Thanks Brian to share!! 2011/7/31 Brian Reilly brian.irei...@gmail.com As promised, I committed my gwt-multipage changes (to a branch) and attached a test jar (gwtmultipage-core-20110731.jar) to the issue: http://code.google.com/p/gwt-multipage/issues/detail?id=21. It's not an official

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-30 Thread Alain Ekambi
Then what just you dont use JSP or JSF then ? GWT follows a different paradigm then those technologies. I just cant see the benefit of similutationg JSP with GWT 2011/7/30 dreamer venugopal.vasire...@gmail.com What if we need to port very complex web app with 100's of jsp/html pages into

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-30 Thread dreamer
Very good point. I have gone through same thought process. After using designer to build composites (html pages), I came to conclusion that this is what I want to build my web sites with. Just drag and drop widgets and build pages, Yes we got new world for page design and development, but web is

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-30 Thread dreamer
I forgot to mention about JNLP based swing applications, I see lot similarities with GWT. Once difference is jar files will be downloaded instead of JavaScript module. Ultimate jnlp app runs in local jvm and makes some socket calls to server. for sure, JNLP addressed issue of client deployment.

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-30 Thread Aidan O'Kelly
There is this, http://claudiushauptmann.com/a-framework-for-gwt-multipage-applications.html Which might be of interest to you. On Fri, Jul 29, 2011 at 3:00 PM, dreamer venugopal.vasire...@gmail.com wrote: Hi, I want to start a new opensource project - GWT page flows - similar to struts.

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-30 Thread Brian Reilly
Note that the current build is for GWT = 2.1. If you're using 2.2+, currently you'll need to get the source and build it against 2.2+ yourself. I did some work a couple of months ago to create a jar that would work for any version of GWT, but haven't committed it yet. In fact, that's the only

GWT Page flows - want to start a open source project - thoughts

2011-07-29 Thread dreamer
Hi, I want to start a new opensource project - GWT page flows - similar to struts. With my moderate GWT knowledge, I did not find any way to weave application with pages, though components are there. Not all ajax applications are single page apps. Here are my thoughts from very high level -

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-29 Thread Juan Pablo Gardella
Is swing applications pageflow? I think not. Perhaps you can look at architecture proposed in ProGWT

Re: GWT Page flows - want to start a open source project - thoughts

2011-07-29 Thread dreamer
What if we need to port very complex web app with 100's of jsp/html pages into GWT ? Yes. swing and gwt got lot of similarities. But loosing web advantages being on web may be not cool. yep Swing is Forms flow with thick client nature. There is a huge paradigm shift between these two worlds. as