What is the difference between web service and remoting?

前端 未结 7 1665
轮回少年
轮回少年 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:38

    Both Remoting and Web Services are ways of communication between applications.

    Remoting - In remoting, the applications involved in the communication process may be located on the same computer, different computers in a same or different network. In remoting, both applications know about each other. A proxy of an application object is created on the other application.

    Web Services - Communication between applications using web services is platform independent and programming independent. The application that consumes the web service, simply accesses it, without needing to know how this web service has actually been implemented & created.

提交回复
热议问题