home *** CD-ROM | disk | FTP | other *** search
/ 41-134-104-147.dsl.mweb.co.za / 41-134-104-147.dsl.mweb.co.za.tar / 41-134-104-147.dsl.mweb.co.za / web.config < prev   
Extensible Markup Language  |  2010-08-21  |  2KB  |  33 lines

  1. <?xml version="1.0"?>
  2. <!--
  3.   For more information on how to configure your ASP.NET application, please visit
  4.   http://go.microsoft.com/fwlink/?LinkId=169433
  5.   -->
  6. <configuration>
  7.     <connectionStrings>
  8.         <add name="HealthCardConnectionString" connectionString="Data Source=HCPORTAL-SVR\SQLEXPRESS;Initial Catalog=hcportalDB;Integrated Security=True" providerName="System.Data.SqlClient"/>
  9.     </connectionStrings>
  10.     <system.web>
  11.         <compilation debug="true" strict="false" explicit="true">
  12.             <assemblies>
  13.                 <add assembly="Microsoft.Web.Services3, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></assemblies></compilation>
  14.         <customErrors mode="Off"/>
  15.     </system.web>
  16.     <system.serviceModel>
  17.         <bindings>
  18.             <basicHttpBinding>
  19.                 <binding name="PushServerWSBinding" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
  20.                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
  21.                     <security mode="None">
  22.                         <transport clientCredentialType="None" proxyCredentialType="None" realm=""/>
  23.                         <message clientCredentialType="UserName" algorithmSuite="Default"/>
  24.                     </security>
  25.                 </binding>
  26.             </basicHttpBinding>
  27.         </bindings>
  28.         <client>
  29.             <endpoint address="http://api.clickatell.com/soap/webservice.php" binding="basicHttpBinding" bindingConfiguration="PushServerWSBinding" contract="SMSService.PushServerWSPortType" name="PushServerWSPort"/>
  30.         </client>
  31.     </system.serviceModel>
  32. </configuration>
  33.