Interview Preparation mode beta
Funny Facebook Status Funny Facebook Status
Enter your email address

What is address in WCF and how many types of transport schemas are there in WCF?

Nice?Vote!
asked 1 year ago in .NET Interview Questions and Answers by KrishnaMachiraju (7,980 points)

1 Answer

Nice?Vote!
Address is a way of letting client know that where a service is located. In WCF, every service is associated with a unique address. This contains the location of the service and transport schemas.

WCF supports following transport schemas

HTTP
TCP
Peer network
IPC (Inter-Process Communication over named pipes)
MSMQ

The sample address for above transport schema may look like

http://localhost:81
http://localhost:81/MyService
net.tcp://localhost:82/MyService
net.pipe://localhost/MyPipeService
net.msmq://localhost/private/MyMsMqService
net.msmq://localhost/MyMsMqService
answered 1 year ago by KrishnaMachiraju (7,980 points)

Related questions