Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

cfc remote method result wrapped up in wddxpacket

When I return a string from my remote method from cfc. The returned string is wrapped up in a strange wddxpacket:

wddxpacket

I tried to turn off the debugging output like this:

<cfsetting showDebugOutput="no">

But it didn't work.

like image 702
Adil Malik Avatar asked Apr 23 '12 21:04

Adil Malik


1 Answers

set returnformat to plain or json in the remote <cffunction>

see: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7f5c.html

like image 91
Henry Avatar answered Sep 19 '22 22:09

Henry