What is the difference between web service and rem

2019-03-12 12:29发布

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 execute the method on the remote machine and the same functionality can be achieved through web service too..

Please excuse me if it is the obvious question..

7条回答
疯言疯语
2楼-- · 2019-03-12 13:13

While WebService is implemented over HTTP, Remoting is implemented over TCP/UDP. Thus Remoting performs better in terms of speed.

查看更多
登录 后发表回答