difference between WCF Services and Web Services and REST Service

后端 未结 7 1096
栀梦
栀梦 2020-12-08 14:38

What is the difference between WCF Services and Web Services in .net
When should I use WCF and when to use Web Services.Is REST and WCF service the same? Thanks

7条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-08 15:15

    REST is an architecture

    WCF is a API in .NET Framework to build connected service oriented application.

    In olden days a functionality developed as Web Service was accessible via internet and the same to be available on local network was available via Remoting.

    Using WCF we don't need to develop different code for it to be accessible over internet and on local network. Just configuring it with bindings would be enough.

提交回复
热议问题