It may be a beginner question but I want to know,
What is the basic difference between Remoting or WebServices?
Which one is better?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
‘Better’ is quite circumstancial here.
Remoting’s uses Binary Serialization so takes up less space over the wire and is generally faster, but will only work with .net on both ends. The versions of your dll’s have to match, and you can host server endpoints in applications without requiring IIS.
Webservices are a bit more flexible as they’re done using XML, are designed to interoperate with other providers (Java, Python etc).
Alternatively, have a look at WCF (Windows Communication Foundation) as it’s where things are heading in the .net world. It allows you to write the code once and then host it on various endpoints