This text file contains example code from: Chapter 19 - Service Performance Optimization Book - SOA with .NET & Windows Azure: Realizing Service-Orientation with the Microsoft Platform Series - Prentice Hall Service-Oriented Computing Series from Thomas Erl (www.soabooks.com/community) Certification - These examples are used as part of the Certified SOA .NET Developer curriculum (www.soaschool.com) <programlisting linenumbering="unnumbered"><configuration> <system.serviceModel> <bindings> <<emphasis role="pd_red">customBinding</emphasis>> <binding name="cachingBasicHttpBinding"> <caching /> <textMessageEncoding /> <httpTransport /> </binding> </<emphasis role="pd_red">customBinding</emphasis>> </bindings> <client> <endpoint binding="<emphasis role="pd_red">customBinding</emphasis>" bindingConfiguration="cachingBasicHttpBinding" contract=" StandardMold.IProductService" name="ProductService"> </endpoint> </client> <extensions> <bindingElementExtensions> <add name="caching" type="SalesApp.CachingElement, SalesApp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> </bindingElementExtensions> </extensions> <system.serviceModel> </configuration></programlisting> </example>