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


Please Help Members By Posting Answers For Below Questions

How do you inherit a class into other class in c#?

993


Why can't we use a static class instead of singleton?

954


Which namespaces are necessary to create a localized application?

1142


What is expression tree in c#?

998


How to assign Null value to Var?

1063


What is an abstract class c#?

969