Web and WCF Services step by step
What is Web Service?
A web service is a set of open protocols and standards that allow data to be exchanged between different applications or systems. Web services can be used by software programs written in a variety of programming languages and running on a variety of platforms to exchange data via computer networks such as the Internet in a similar way to inter-process communication on a single computer.
What is WCF ?
WCF (Windows Communication Foundation) is a framework for building service-oriented applications. Using WCF, you can send data as asynchronous messages from one service endpoint to another. A service endpoint can be part of a continuously available service hosted by IIS, or it can be a service hosted in an application.
This post contains a list of self explained links which are related to the Web and WCF Services and I am going to describe and implement one for one. Just click the links and se explanation and implementations.
How to create ASP.net Core web application to consume a Web Service
How to create web Service reference in asp.net Core web-application in VS2019
How to Consume a Web Service by ASP.net Core application