Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

here i am attaching one config entries because i have couple of question for config

entries...please have a look

<service name="WCFService.Service" behaviorConfiguration="behaviorConfig">
<host>
  <baseAddresses>
    <add baseAddress="net.tcp://localhost:1645/ChatServer/"/>
    <add baseAddress="http://localhost:1648/ChatServer/"/>
  </baseAddresses>
  </host>
  <endpoint address="tcp"
                  binding="netTcpBinding"
                  bindingConfiguration="tcpBinding"
                  contract="ChatService.IChat"/>

 <endpoint address="net.tcp://localhost:1645/ChatServer/mex"
                  binding="mexTcpBinding"
                  contract="IMetadataExchange"/>

 </service>

a) tell me why two base address is given. the person who wrote this config entries why he

write two base address....any idea??

b) just see the tcp endpoint why the person construct the tcp endoint this way rather he could write tcp endpoint like this way

<endpoint address="net.tcp://localhost:1645/ChatServer/"
                  binding="netTcpBinding"
                  contract="ChatService.IChat" />

c) why he wrote the tcp url in mex endpoint rather he could write mex endpoint like

<endpoint address="mex"
                  binding="mexHttpBinding"
                  contract="IMetadataExchange" />

but he did not write in this way....is there any special reason.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.