Roger Voss
Posts: 27
Nickname: rogerv
Registered: Aug, 2005
|
|
Re: server-side web framework development obsolete
|
Posted: Jun 16, 2007 2:11 AM
|
|
> Echo2 is right at the forefront of what RIA should be. > Execute the business logic on the server (where it > belongs) and send tiny little messages between the client > and the server. Frankly if you lose your network > connection your RIA should be dead. > > The stupendous win with echo 2 is that you really develop > all your application in Java. No HTML, no Javascript, no > tags, no configuration files flying all over the place. > Lovely.
Distributed applications that handle UI event processing via spanning it over a network connection are ill conceived. They get hung up and stiff the user with baffling (and inconsiderate) non-responsiveness when the network flakes. They only behave reasonably when network connectivity remains ideal in all respects.
GWT apps, in contrast, are written in Java source code but their UI behavior executes entirely in a client browser. The only network interactions for GWT apps (other than initial loading) are async RPC calls - being async they don't block the UI thread in any manner so the UI remains responsive at all times.
Same goes for a Flex app that uses HttpService asynchronously or the bi-directional messaging XmlSocket class.
|
|