Thomas
Thomas

Reputation: 34218

what is the use of multiple endpoints in WCF service?

i have seen people decorate their config file with multiple endpoints in WCF service. is there any reason. when one endpoint is ok then why two or more endpoints are require?

tell me small situation when multiple endpoints is required.

Upvotes: 0

Views: 964

Answers (1)

Reno
Reno

Reputation: 1319

Scenario for multiple endpoints:

  • Service wants to expose more than one type of binding.
  • Service wants to expose more than one contract on the same binding.
  • Service wants to expose same binding and contract on different addresses.

http://debugmode.net/2010/05/25/multipleendpoint/

Upvotes: 1

Related Questions