See [http://msdn.microsoft.com/en-us/library/ms733099%28v=vs.110%29.aspx Configuring Bindings for Windows Communication Foundation Services] for further details and [http://msdn.microsoft.com/en-us/library/hh924831%28v=vs.110%29.aspx Configuring Timeout Values on a Binding] for information about timeout configuration.
{{Attention|If the service has to support the streaming transfer mode - e.g. used for downloading large data branches in the UBIK client, ensure to a the section for "BasicHttpBinding_UBIKContent"}}
<syntaxhighlight lang="xml">
</security>
</binding>
<!-- USED FOR STREAMING TRANSFER MODE -->
<binding name="BasicHttpBinding_UBIKContent"
transferMode="Streamed"
sendTimeout="00:05:00"
maxBufferPoolSize="67108864"
maxReceivedMessageSize="67108864"
receiveTimeout="01:00:00">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</binding>
</basicHttpBinding>
<wsHttpBinding>
</system.serviceModel>
</syntaxhighlight>
== See also ==
* [[Configuration Files]]
[[Category:Installing|Configuration Files/Bindings.config]]