ColdBox Forums Notification: Post to AjaxProxy.cfc on CFMX 6.1

Title: RE: AjaxProxy.cfc on CFMX 6.1
Thread: AjaxProxy.cfc on CFMX 6.1
Forum: Need Help?
Conference: ColdBox
User: bdensmore Hi Sana,
what I did was on lines 134 and 170 changed

<cfset result =
super.process(argumentCollection=HoldItTemporary)>

to

<cfif
left(server.ColdFusion.ProductVersion,1) eq 6>
<cfinvoke
component="coldbox.system.extras.ColdboxProxy" method="super"
returnvariable="result" argumentcollection="#HoldItTemporary#" />
<cfelse>
<cfset result = super.process(argumentCollection=HoldItTemporary)>
</cfif>

I tested in 6.1,7 and 8. If you see a better way to write it then
just update what I did and I'll change my code on my end.

I thought ColdBox
had a plugin for the CF version but I couldn't find it in the API anywhere.
Maybe if it doesn't exist that will be a plugin I will write. Not sure how often
people need that but it might be useful.

Thanks,
Ben
http://www.luismajano.com/forums/index.cfm?event=ehMessages.dspMessages&threadid=54937AB1-FF65-CEF6-6510B00454B79EFE