Haseeb Zahid
Haseeb Zahid

Reputation: 656

Retrieving JSON in Web Service

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

Answers (1)

Saverio Terracciano
Saverio Terracciano

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

Related Questions