What is the difference between web service and remoting?

前端 未结 7 1651
轮回少年
轮回少年 2021-02-04 04:17

I know web service and have some knowledge on remoting. Both concepts invoke methods on the client machine so where lies the difference ??

Through remoting we can also e

相关标签:
7条回答
  • 2021-02-04 04:57

    Both support distributed applications.

    Web services are cross platform, using common standards and work through firewalls. They also think in terms of messages, not objects - you send a message to a service, and you get a reply.

    Remoting is an MS only technology which is not cross platform and talks in a binary format. It thinks in terms of objects, you create an object on the remote server and work with it. It doesn't work well with firewalls. Remoting is also dead these days, MS favour WCF (which includes web services)

    0 讨论(0)
提交回复
热议问题