When should a web service not be used?

后端 未结 7 858
予麋鹿
予麋鹿 2020-11-30 22:21

Using a web service is often an excellent architectural approach. And, with the advent of WCF in .Net, it\'s getting even better.

But, in my experience, some people

7条回答
  •  遥遥无期
    2020-11-30 23:07

    Nick Harrison, a brilliant developer in Charlotte, suggested these scenarios where using a web service makes sense:

    • On a Web farm, where there are multiple web servers hosting website(s), all pointing to web service(s) running on another web server. This allows for distributing the load over multiple servers.
    • Client/server, where Windows forms apps can call a web service.
    • Cross platform
    • Passing through a firewall

提交回复
热议问题