Reputation: 656
I have recently started working on WebServices and I don't completely know if it is even possible. I am passing JSON string to WCF Web Service and I want to know if there is anyway that Web Service can retrieve JSON string and return data against the retrieved string?
Upvotes: 0
Views: 67
Reputation: 3915
Basically you're just passing a string to your WCS service.
That string contains JSON, so it needs to be parsed to retrieve the content.
There are several ways to parse JSON in .NET, I will just link a few of them, but you can find several more online:
Upvotes: 1