Pergunta
cffunction return that is not a string
I want to creat web serivice by cfc that return a string.
But the cfc return a struct.
How can I do ?
The client only accept return a string.
my web service code:
<cffunction name="wechar_tokenVerify" access="remote" returntype="string">
<cfreturn "132456">
</cffunction>
the client's http method is get
thanks
