<?xml version="1.0"?>
<configuration>
  <appSettings>
    <add key="cCustomerPath" value="S:\Customers" />
    <add key="cSignaturesPath" value="S:\Signatures" />
  </appSettings>
  <startup>
    <supportedRuntime version="v4.0"/><!--.NET 4.5 -->
    <supportedRuntime version="v2.0.50727"/><!-- .NET 3.5 -->
  </startup>
  <system.serviceModel>
    <bindings>
      <basicHttpBinding>
        <binding name="RequestPageSoap" />
        <binding name="RequestTokenSoap" />
      </basicHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://localhost:49646/WebService/RequestPage.asmx"
        binding="basicHttpBinding" bindingConfiguration="RequestPageSoap"
        contract="RequestPageHttp.RequestPageSoap" name="RequestPageSoap" />
      <endpoint address="http://localhost:49646/WebService/RequestToken.asmx"
        binding="basicHttpBinding" bindingConfiguration="RequestTokenSoap"
        contract="RequestTokenHttp.RequestTokenSoap" name="RequestTokenSoap" />
    </client>
  </system.serviceModel>
</configuration>
