Hi,
I was trying to make the Windows Service Management REST API (
http://msdn.microsoft.com/en-us/library/windowsazure/ee460799.aspx)
to return response in JSON format. However, it keeps returning data in XML. I have tried adding the headers
request.Accept = "application/json";
request.ContentType = "application/json"
Is there a way to accomplish this?
Thanks