Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does ABC in WCF stand for?

What does ABC in WCF stand for?

like image 324
Rajesh Avatar asked Feb 13 '10 07:02

Rajesh


People also ask

What is ABC in Web services?

Remember "ABC". "A" stands for Address: Where is the service? "B" stands for Binding: How do I talk to the service? "C" stands for Contract: What can the service do for me?

What is address binding and contract in WCF?

ABC means Address, Binding and Contract. Address: In WCF, every service is associated with a unique address. The address provides two important elements: the location of the service and the transport protocol or transport schema used to communicate with the service.

What are the endpoints in WCF?

Endpoints provide clients access to the functionality offered by a WCF service. Each endpoint consists of four properties: An address that indicates where the endpoint can be found. A binding that specifies how a client can communicate with the endpoint.


2 Answers

A == Address B == Binding C == Contract

You can read more here.

like image 177
Ikaso Avatar answered Oct 05 '22 09:10

Ikaso


Address, Binding & Contracts.

(Ref: http://www.google.com/search?q=WCF%20ABC)

like image 22
kennytm Avatar answered Oct 05 '22 10:10

kennytm