I would like to use the ColdFusion Request Debugging Output from the context of my CFC web service. Is this possible? Here is a sample CFC that I've tried to access:
/cfjunk/jsonBug.cfc:
<cfcomponent output="true">
<cffunction name="test" returntype="string" access="remote" returnformat="json" output="true">
<cfset local.str = structNew()>
<cfsetting showDebugOutput= "true">
<cfscript>
str = {a = "hello", b = JavaCast("int", 23)};
</cfscript>
<cfreturn SerializeJSON(local.str)>
</cffunction>
</cfcomponent>
Requested via http://localhost:8500/cfjunk/jsonBug.cfc?method=test with Request Debugging turned on, yielding no actual debugging output. As you can see, I've tried to force the issue by specifying showDebuggingOutput="true", to no avail.