Microsoft provides different programming models that you can use to create web services.
WCF
The Windows Communication Foundation (WCF) is an incremental, evolutionary technology that brings the following Microsoft connectivity technologies into the System.ServiceModel namespace:
Web services (ASMX)
Web service Extensions (WS*)
Microsoft Message Queuing (MSMQ)
Enterprise Services
COM+
.NET Remoting
Having all these technologies in the same namespace makes designing, developing, and deploying applications that require connectivity much simpler. WCF enables you to use one coding model and to transition between different communication types more smoothly.
Refer to additional topics in the Visual Studio Help that describe various aspects the WCF Service in greater detail.
WCF Service and Client
A WCF Service is a program that exposes a collection of endpoints. An endpoint is a portal for communicating with the world.
A WCF client is a program that exchanges messages with one or more endpoints.
Endpoint
A WCf service endpoint has an address, a binding, and a contract.
Address
The endpoint address is a network address where the endpoint resides.
Binding
The endpoint binding specifies how the endpoint communicates with the world. For example, a binding specifies the
Transport protocol, for example Transport Control Protocol (TCP) or HyperText Transfer Protocol (HTTP).
Encoding, for example text or binary.
Security requirements, for example Secure Sockets Layer (SSL) or Simple Object Access Protocol (SOAP) message security.
A binding has
A name and namespace, which uniquely identify the binding in the service metadata.
A collection of composable binding elements, each of which describes an aspect of how the endpoint communicates with the world.
Contract
An endpoint contract specifies what the endpoint communicates. A contract is a collection of operations, each of which is a simple message exchange that has a basic Message Exchange Pattern (MEP), such as one-way, duplex, or request/reply.
An application creates a ContractDescription type from an interface or class that has a ServiceContractAttribute defining the contract.
The ContractDescription type has
A method that corresponds to endpoint operations. Each method has an OperationContractAttribute, which indicates that the method implements a service operation as part of a service contract.
A name and namespace that uniquely identify the contract in the service metadata.
A collection of ContractBehaviors (See the following description of behaviors.).
A program creates a ContractDescription type from an interface or class that has a ServiceContractAttribute that defines the contract. A ContractDescription method that corresponds to an endpoint operation has an OperationContractAttribute, which indicates that the method implements a service operation as part of a service contract.
The ContractDescription type has
A name and namespace that uniquely identify the contract in the service metadata.
A collection of ContractBehaviors (See the following description of behaviors).
Behavior
Each contract has a collection of ContractBehaviors, which are modules that modify or extend the contract behavior.
Behaviors are types that modify or extend Service or Client functionality. For example, the metadata behavior that ServiceMetadataBehavior implemented controls whether the Service publishes metadata. Similarly, the security behavior controls impersonation and authorization.
Behaviors also participate in the process of building the channel and can modify that channel based on user-specified settings and/or other aspects of the Service or Channel.
Documentation
By configuring various ePortal properties, you can provide documentation for the generated WCF web service and its methods. This documentation is then available as wsdl:documentation elements in the Web Services Description Language (WSDL) document. The WSDL document describes your web service.
To provide a brief, overall description for your web service, configure a value for the web service Description property in the presentation generation options. Refer to the topic Changing Presentation Generation Options for more information.
To provide a brief description for a particular web service method, configure a value for the Description property at the root of the corresponding client message or server message. Refer to the topic Modifying Client Messages for more information.
To provide a brief description for a particular web service method parameter, configure a value for the Description property of the corresponding field in the corresponding client message or server message. Refer to the topic Modifying Client Messages for more information.
Web API
You can develop Web API projects using either of the following frameworks:
.NET Framework Web API
The Web API framework makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices.
The ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework. For more information on .NET Framework Web API, refer to http://www.asp.net/web-api.
.NET Core Web API
The ASP.NET Core Web API delivers all the features similar to the traditional ASP.NET Web API. It aligns with the Microsoft strategy for .NET Core, to integrate with the latest technologies and future proof your API development. For more information on .NET Core Web API, refer to Microsoft documentation.
Unisys recommends the use of .NET Core WebAPI for web service projects.