Advertisement
Guest User

Untitled

a guest
Jan 27th, 2011
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.99 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <configuration>
  3.  
  4.   <appSettings>
  5.     <!--available modes: ScrapeAreas/ScrapeListings-->
  6.     <add key="Mode" value="ScrapeListings" />
  7.     <!--in minutes-->
  8.     <add key="NotificationPollTime" value="10" />
  9.     <!--in hours, 0 means don't reset-->
  10.     <add key="ResetTime" value="0" />
  11.     <!--logs errors and warnings to eventlog-->
  12.     <add key="EnableLogging" value="true" />
  13.     <!--threading-->
  14.     <add key="MaxThreads" value="0" />
  15.     <!--geo keys-->
  16.     <add key="GOOGLEMAPS_URL" value="http://maps.google.com/maps/geo?q=" />
  17.     <add key="GOOGLEMAPS_KEY" value="ABQIAAAAjn-nMVgqYGUJgHZ1P-pZ_BQuQ9_xRF0rWq1R-8w6REs8Q4vfKxQ0wYlwHP8P11Oq1njGKFp3uqhVtw" />
  18.   </appSettings>
  19.  
  20.   <system.serviceModel>
  21.     <bindings>
  22.  
  23.       <customBinding>
  24.         <binding name="BinaryHttpBinding"
  25.                  closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:01:00" sendTimeout="00:01:00">
  26.           <binaryMessageEncoding />
  27.           <httpTransport maxBufferSize="99999999" maxBufferPoolSize="524288" maxReceivedMessageSize="99999999"
  28.                  transferMode="Buffered" useDefaultWebProxy="true" />
  29.         </binding>
  30.       </customBinding>
  31.  
  32.       <basicHttpBinding>
  33.         <binding name="BasicHttpBinding"
  34.                  closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:01:00" sendTimeout="00:01:00"
  35.                  allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
  36.                  maxBufferSize="99999999" maxBufferPoolSize="524288" maxReceivedMessageSize="99999999"
  37.                  messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
  38.           <readerQuotas maxDepth="32" maxStringContentLength="819200" maxArrayLength="16384"
  39.                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
  40.           <security mode="None">
  41.             <transport clientCredentialType="None" proxyCredentialType="None" realm="" />
  42.             <message clientCredentialType="UserName" algorithmSuite="Default" />
  43.           </security>
  44.         </binding>
  45.       </basicHttpBinding>
  46.  
  47.       <netTcpBinding>
  48.         <binding name="NetTcpBinding">
  49.           <security mode="None"/>
  50.         </binding>
  51.       </netTcpBinding>
  52.  
  53.     </bindings>
  54.     <client>
  55.       <!--http://localhost/houstersservices/ListingService.svc-->
  56.       <!--HTTP Binding-->
  57.       <endpoint address="http://173.193.209.82/ListingService.svc"
  58.                binding="basicHttpBinding"
  59.                bindingConfiguration="BasicHttpBinding"
  60.                contract="ListingServiceProxy.IListingService"
  61.                name="HttpBinding" />
  62.      
  63.       <!--TCP Binding-->
  64.       <endpoint
  65.              address="net.tcp://127.0.0.1:8000/ListingService"
  66.              binding="netTcpBinding" bindingConfiguration="NetTcpBinding"
  67.              contract="ListingServiceProxy.IListingService" name="NetTcpBinding" />
  68.     </client>
  69.   </system.serviceModel>
  70.  
  71. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement