adspace
Explain About remoting and web services. Difference between them
Answer Posted / Alam Singh Tomar
Remoting and Web Services are both used for distributed computing in C#, but they have some key differences:
1. Protocol: Remoting uses binary communication (SOAP/TCP) while Web Services use text-based protocols such as SOAP over HTTP or XML over HTTP.
2. Platform Independence: Web Services can be consumed by clients on any platform that supports HTTP and XML, whereas Remoting is primarily designed for .NET platforms.
3. Simplicity: Web Services are simpler to create and deploy compared to Remoting applications as they don't require as much setup or configuration.
4. Data Transfer: Web Services are typically more efficient when transferring large amounts of data due to their text-based format, whereas Remoting tends to be faster for smaller amounts of data due to its binary nature.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers