Monday, August 22, 2005 9:42 AM
triplez
AJAX - Bringing the client side logic to the server?
I've always been wondering about AJAX and its role in creating rich-client interfaces withinthe web. It has always been client-side scripting, using javascript to create rich client-side experience. But with AJAX, you're able to bring these client-side scripting logic back to the server.
Is it really worth the extra XML-over-HTTP round-about when javascript can solve right now?
Why would people want to use the server-side to do the client-side scripting logic instead?
I think it's usually because it's easier to handle logic on the client-side server-side, with better language features on the server-side. But is it really worth it? I think it's still is the problem of JavaScript itself. The language itself needs to be revamped and updated to support better language features to interface with the DOM. Creating a new client-side script which easily talks to the server-side using AJAX, and easily uses and manipulate server-side generated html (DOM) would be needed.
What do you guys think?
Filed under: Programming, Ramblings