Question

I understand the purpose of having WCF endpoint on the service side, but I don't quite understand the purpose of configuring endpoint on the client side. Is this for duplex connection or something?

Regards

James

Was it helpful?

Solution

An endpoint is effectively a tuple of (address, binding, contract).

The client has all these things, just like the server. (In client side it is address you want to connect to, binding used to talk to the server, contract used for the messages.)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top