ColdFusion 8
This is as simple pseudo-code as there can be:
<cffunction name="badJSON" access="remote" output="true" returntype="string" returnformat="JSON">
<cfreturn "06762" />
</cffunction>
Results in:
6762.0
It should result in:
06762
Is there a way to get JSON to not convert my value to numeric?
I know I can use WDDX, but that is out of the question.