Wednesday, February 15th, 2006
Ajax Agent: Open Source Ajax Toolkit
Ajax Agent is another Ajax toolkit/library/framework created by some old Ajax pro's (the Lead Architect behind Onepage Portal Server (now Sybase Enterprise Portal) & one of the core engineers behind the Content Express For Microsoft Commerce Server).
Their aim is to make Ajax work as simple as possible.
The PHP version offers three steps to get started with the framework:
-
-
include_once('agent.php');
-
$agent->init();
-
agent.call('url','server_function', 'client_handle', param1, param2, ...);
-
The first line is declared to include the AJAX Agent library, initialize the agent framework & instantiate the server side 'Agent'. The second line instantiates the client side 'Agent'. The third line which runs on the client side within the javascript browser environment, uses the client side 'Agent' to directly call the server function asynchronously. AJAX Agent supports complex data types like associated arrays & objects. It makes use of JSON (JavaScript Object Notation) for data interchange format to achieve this.













cool!
it’s what i’am looking for
cool feature
Very simple PHP-Ajax tool. A very simple financial real time updating stock list example based upon this structure can be found at: http://www.ajaxtechforums.com/viewtopic.php?t=21
Great job! This one is the best KISS I was looking for.
Most importantly this is very flexible and we do not big initation
Nice work, Keep it up plz :)
Very nice! I’m integrating your library with my program. thanks a lot, keep working