Here it is:
<system.serviceModel>
<bindings>
<customBinding>
<binding name="customBinding0">
<binaryMessageEncoding />
<httpTransport />
</binding>
</customBinding>
</bindings>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<services>
<service behaviorConfiguration="WcfService.ServiceBehavior" name="MyAPP\_WF\_WCF.WF.Infrastructure.ListValueWF">
<endpoint address="" binding="customBinding" bindingConfiguration="customBinding0"
contract="MyAPP\_WF\_WCF.Interfaces.Infrastructure.IListValue" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8731/Design\_Time\_Addresses/MyAPP\_WF\_WCF/WF/Infrastructure/ListValueWF/" />
</baseAddresses>
</host>
</service>
.....
</services>
<behaviors>
<serviceBehaviors>
<behavior name="WcfService.ServiceBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
<behavior name="MyAPP\_WF\_WCF.Workflow1Behavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
<serviceCredentials>
<windowsAuthentication includeWindowsGroups="true" allowAnonymousLogons="false" />
</serviceCredentials>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>