WCF : Endpoints clarifications

Posted by nettguy on Stack Overflow See other posts from Stack Overflow or by nettguy
Published on 2010-04-02T21:41:02Z Indexed on 2010/04/02 21:43 UTC
Read the original article Hit count: 371

Filed under:
|

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>

© Stack Overflow or respective owner

Related posts about wcf

Related posts about endpoints