Advertisement
Guest User

Untitled

a guest
Jan 29th, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.66 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <configuration>
  3.  
  4.   <appSettings>
  5.     <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
  6.   </appSettings>
  7.   <connectionStrings>
  8.     <add name="TelioSimDatabaseConnection" connectionString="Data Source=localhost;Initial Catalog=TelioSim;User Id=TelioSim;Password=xxx;" providerName="System.Data.SqlClient"/>
  9.   </connectionStrings>
  10.   <system.web>
  11.     <compilation debug="true" targetFramework="4.5" />
  12.     <httpRuntime targetFramework="4.5"/>
  13.   </system.web>
  14.   <system.serviceModel>
  15.     <behaviors>
  16.       <serviceBehaviors>
  17.         <behavior>
  18.           <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
  19.           <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
  20.           <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
  21.           <serviceDebug includeExceptionDetailInFaults="true"/>
  22.         </behavior>
  23.       </serviceBehaviors>
  24.     </behaviors>
  25.     <protocolMapping>
  26.         <add binding="basicHttpsBinding" scheme="https" />
  27.     </protocolMapping>    
  28.     <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
  29.   </system.serviceModel>
  30.   <system.webServer>
  31.     <modules runAllManagedModulesForAllRequests="true"/>
  32.     <!--
  33.        To browse web app root directory during debugging, set the value below to true.
  34.        Set to false before deployment to avoid disclosing web app folder information.
  35.      -->
  36.     <directoryBrowse enabled="true"/>
  37.   </system.webServer>
  38.  
  39. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement