Sorry, no.

So for example i have my web service file "myService.cfc" and I need
to post data from the client to the JSON web service.

For example ...
<cffunction name="ClientCheckIn" access="remote" returnFormat="plain"
returntype="any" output="no">
<cfargument name="ClientCheckInDataInJSONFormat" required="yes">

<!--- Do something with ClientCheckInDataInJSONFormat --->
<cfset xyz =
#DeserializeJSON(arguments.ClientCheckInDataInJSONFormat)#>

<!--- Return the data --->
<cfreturn />
</cffunction>


More on this, I guess I'm trying to figure how everyone else does it?
Do most people just put all of the serialized JSON text in one
argument and the deserialize or is there some other way of doing it?

I hope this makes sense?

Thanks,
Charlie




On Jul 25, 2:32 pm, Matthew Woodward <[email protected]> wrote:
> On Mon, Jul 25, 2011 at 2:16 PM, Skellington <[email protected]> wrote:
> > My question is, how do you post data to a OpenBD JSON web service? Is
> > it just a standard http GET request and use URL params to pass the
> > JSON data or is there something else I should be doing?
>
> If you're talking about getting data from the Mac side to the OpenBD side,
> it's be standard HTTP get and post operations. Is that all you're asking?
>
> --
> Matthew Woodward
> [email protected]http://blog.mattwoodward.com
> identi.ca / Twitter: @mpwoodward
>
> Please do not send me proprietary file formats such as Word, PowerPoint,
> etc. as attachments.http://www.gnu.org/philosophy/no-word-attachments.html

-- 
official tag/function reference: http://openbd.org/manual/
 mailing list - http://groups.google.com/group/openbd?hl=en

Reply via email to