Ищем объяснение внутренней работы файла WCF web.config.Конкретно эти разделы.У меня есть представление о том, что они имеют в виду, но то, что я действительно ищу, это объяснение внутренней работы.Например на
<system.serviceModel>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
<protocolMapping>
<add scheme="http" binding="wsHttpBinding" bindingConfiguration="" />
</protocolMapping>
<services>
<service behaviorConfiguration="DevelopmentBehavior" name="MyCo.Administration.AdminSvcs.AdministrationSvc">
<endpoint address="" binding="wsHttpBinding" contract="MyCo.Administration.AdminSvcs.IAdministrationSvc" bindingConfiguration="DevelopmentBinding" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ProductionBehavior">
<serviceMetadata httpGetEnabled="false" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
<behavior name="DevelopmentBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<bindings>
<wsHttpBinding>
<binding name="DevelopmentBinding">
<security mode="None">
<transport clientCredentialType="None" />
<message establishSecurityContext="false" />
</security>
</binding>
</wsHttpBinding>
</bindings>