WCF : Endpoints clarifications
- by nettguy
Except netNamedPipeBinding, we can have multiple endpoints of same transport.Is it correct?
example
<service name = "TestService">
<endpoint
address = "http://localhost:8000/TestService/"
binding = "wsHttpBinding"
contract = "ITestContract"
/>
<endpoint
address = "net.tcp://localhost:8001/TestService/"
binding = "netTcpBinding"
contract = "ITestContract"
/>
<endpoint
address = "net.tcp://localhost:8002/TestService/"
binding = "netTcpBinding"
contract = "IMyOtherTestContract"/>
</service>