There is scenerio, when one client has to access service SOAP using Http and other client have to access Binary using TCP, how can you acheive?

 Posted by Sumank on 5/10/2013 | Category: WCF Interview questions | Views: 3576 | Points: 40
Answer:

This can be acheived by adding extra endpoint in configuration file.

<endpoint address="http://locahost:8090/Service" contact="IMathService" binding="wsHttpBinding"/>
<endpoint address="net.tcp://locahost:8080/Service" contact="IMathService" binding="netTcpBinding"/>


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response