I created a couple of services, but they are all running as soap web services and return soap messages.
1- How can I make my wcf project to be restful instead of soap?
2- How can i make all services to return and expect json instead of xml?
|
|
|
You need to do at least two things:
Other than that - you really don't need to do anything to get your REST service up and running. Mind you: this is just "exposing" your current SOAP methods as REST - this is not the "proper" REST style of programming. To do that, you'd have to design your service from the beginning to be RESTful. SOAP typically uses messages and methods - stuff like REST on the other hand thinks in resources - you have a |
|||
|
|
|
Another example of a WCF REST/Json service and client can be found in my answer to the question "Client configuration to consume WCF JSON web service". |
|||
|
|
|
There is an excellent section in the MSDN docs devoted to a detailed analysis of how to "JSON-enable" your WCF services. I recommend it as a starting point. But before you read that, I recommend skimming through the section on the WCF Web Http Programming Model, since it builds up some foundational concepts that would be useful in understanding the JSON-enablement / AJAX-enablement topics of WCF described later. Hope this helps! |
|||
|
|