I would like to increase my connection timeout . I am hosting my WCF service in windows service. this is my App.config file:
`
<services>
  <service name="Service.WebexClient"  behaviorConfiguration="MyServiceTypeBehaviors" >
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:8413/MyWebexService"/>
      </baseAddresses>
    </host>
  </service>
</services>
<behaviors>
  <serviceBehaviors>
    <behavior name="MyServiceTypeBehaviors" >
      <serviceMetadata httpGetEnabled="true" />
    </behavior>
  </serviceBehaviors>
</behaviors>
` I would like to increase the time out, where do it put this configuration in the app.config file?
 
     
    