vote up 1 vote down star
1

What is the best way to create a JSON web service? We have another team that is using Java and they insist to having all communication done using JSON. I would prefer to use WCF rather than any 3rd party framework.

I found this blog: http://www.west-wind.com/weblog/posts/164419.aspx, and it suggests that the Microsoft implementation is flawed with M$ specific crap.

flag

You might want to try it yourself to make sure Rick wasn't working with pre-release bits. – John Saunders May 5 at 10:52

3 Answers

vote up 0 vote down check

I ended up using JayRock. Its fantastic piece of technology, just works. You don't get any NullReferenceExceptions like from this crap WCF if you don't configure it correctly.

link|flag
vote up 0 vote down

If you use WCF and the 3.5 Framework, it couldn't be easier. When you mark your OperationContracts with the WebGet attribute, just set the ResponseFormat parameter to WebMessageFormat.Json. When the service is accessed RESTfully, it will return the data using the DataContractJsonSerializer.

It's really helpful to mark the POCOs that you want to JSON serialize as [DataContract] and to mark each serializable member as [DataMember]. Otherwise, you end up with funky JSON, as Rick pointed out in his blog post.

link|flag
vote up 4 vote down

ASP.NET MVC can return JSON quite easily, especially if you are creating a REST-based API. For example:

public ActionResult Customer(int id)
{
    return Json(new Entities.Customer { Id = id, Name = "Customer " + id });
}

accessed on the route /somecontroller/Customer/12345 yields:

{"Id":12345,"Name":"Customer 12345"}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.