Is there any framework for rich web clients on top of html/css?
Posted
by
iamgopal
on Stack Overflow
See other posts from Stack Overflow
or by iamgopal
Published on 2012-04-14T08:55:40Z
Indexed on
2012/04/14
11:29 UTC
Read the original article
Hit count: 417
Some RAD tools like openobject use rich web clients. I.e. their client side code reside inside the browser and they talk to the server via xml-rpc or json-rpc only and change the view accordingly, all the javascript and css are transferred only once. Such rich web clients would increase the productivity in enterprise class web application that have lots of processes and forms etc.
I would like to use such a rich web client inside my own application. I tried to search but found only openerp-web, which is tightly integrated to its server. Is there any other rich web client framework available? if not, is there any design detail I can look into to create my own?
Thanks.
Edit: Browser is a client which uses http and similar protocols to talks to web server which serve pages that the client displays. Rich web client is a client which sits on top of Browser which talks to the server, send data, receive data and information about How to update the view etc and do it. Similar to Vaadin, such rich web client will eliminate any code requirement on client side and and all the coding will be done on server side. Belows are such thin clients.
- pjax ( jquery )
- vaadin ( java )
- openobject web client ( python )
- nagare ( python )
- seaside ( smalltalk )
- p4a ( php )
this are all such clients that once properly setup will allow to code on only on sever and still provide great ajax like experience.
© Stack Overflow or respective owner