Click here to Skip to main content
15,887,267 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What is REST full service in WCF.
Posted
Comments
member60 15-Mar-12 2:32am    
surf through google first

Normally, a WCF service will use SOAP, but if you build a REST service clients will be accessing your service with a different architectural style (calls, serialization like JSON, etc).

In terms of downside, you lose much of the work that has been done on SOAP header specifications (WS-* like WS-Security, WS-ReliableMessaging, WS-AtomicTransactions for example). Also, SOAP is transport neutral whereas REST presupposes HTTP.

Nice MSDN reference at: http://msdn.microsoft.com/en-us/library/dd203052.aspx[^]
 
Share this answer
 
Have a look Here First[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900