Click here to Skip to main content
15,891,253 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi
i tried to upload a image via stream through rest wcf service and i succeed in it.in normal wcf service also we are using stream right.so what is the advantage while we are using wcf rest rather than wcf service in this scenario.rest is saying we can transfer anything as it is through http.so can anyone suggest any other method for uploading through rest service
Posted

1 solution

To answer your question on the advantage of WCF REST on WCF Service. WCF Service is Microsoft's implementation of SOAP. SOAP is a kind of stateful, session-based, message-based web service. Itz good if your service is designed as a set of complex actions.

REST is a stateless, sessionless, resource-based web service. It's good if your service is designed to access data and perform simple CRUD operations on it. SOAP and REST are mutually exclusive. A service cannot be both. REST is an architecture style, not a technology.
 
Share this answer
 
v2

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