Title: RE: cfajaxproxy
Thread: cfajaxproxy
Forum: Discussions
Conference: ColdBox
User: sanaullah73 Hi daemach,
I did modified ajaxcfc, here is the link to download with demo
http://www.luismajano.com/forums/index.cfm?event=ehMessages.dspAttachment&id=3B0
CB887-FF65-CEF6-6557D6E2474D13BF
secondly ColdBoxProxy offer you great
flexibility, its up to programmer how to manage/implement stuff.
Further
implementation, I have 2 ColdBox Plugins ready to use, toXML, toJSON
http://ortus.svnrepository.com/coldbox/trac.cgi/wiki/cbCodeDepot
Let me know
what type of help you require to build AJAX based app, I will provide you all
code examples.
AS you talked about cfajaxproxy.... you can integrate with
coldbox...
[code]
<cfajaxproxy cfc="myapp.coldboxproxy" jsclassname="emp">
<script>
var e = new emp();
e.process("ehGeneral.getEmployees&name='John'");
</script>
[/code]
You can
follow the CF8 documentation and implementation is slighty different from the
original examples posted on CF8 docs.
Secondly I would recmend to see the
samples/applications/ColdboxFlexTester/coldboxproxy.cfc
I hope this will
help you in the implementation of cfaxajproxy.