> -----Original Message-----
> From: wolf2k5 [mailto:[EMAIL PROTECTED]
> Sent: Sunday, August 14, 2005 7:21 AM
> To: CF-Talk
> Subject: Ajax and CFCs
> 
> Hi,
> 
> Do you know any example on how to integrate an AJAX web interface with
> ColdFusion Components?
> 
> Do you know any good AJAX client/server library with ColdFusion support?

There are a few options.

JSON offers good support for both CF and JavaScript (albeit not in a single
library).

Neuromancer is pretty feature rich and offers all the connectivity you might
need (its a tad on the complex side for my tastes, but correspondingly more
powerful than many options).

WDDX is old and really needs to be updated, but it does pretty much
everything a growing AJAX app needs.


Remember however that all of these essentially boil down to a single problem
solved: passing structured data (javascript objects, complex structs, etc)
over a text-only transport (http).

ALL of them provide a method to convert complicated stuff to text and back
again.

I strongly suggest that you design your system in such a way as to hide and
abstract the transport mechanism as much as possible.  You should, in other
words, be able to switch from JSON to WDDX with little problem - both do
(essentially) the same thing so why should there be any application
dependencies on them beyond the transfer of data?

Jim Davis




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:214944
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to