My iPhone app communicates with a RESTful service that provides JSON output. I’ve been generating JSON using mainly PHP. If I use a .NET web service or WCF service, will there be any limitations or differences I should be aware of in regards to JSON as input/output for the service? I’m not sure what to expect from .NET in this regard.
My iPhone app communicates with a RESTful service that provides JSON output. I’ve been
Share
One thing I noticed:
.NET emits DateTime objects as
where xxx is the number of seconds or whatever. I had to eval that on the JAvascript side to get it to become an actual date.