Advertisement
Guest User

Untitled

a guest
Nov 20th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.55 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3.  
  4. <connectionStrings>
  5. <add name="ARRIENDO_DISFRAZEntities" connectionString="metadata=res://*/Modelo.csdl|res://*/Modelo.ssdl|res://*/Modelo.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=localhost;initial catalog=ARRIENDO_DISFRAZ;user id=sa;password=Duocadmin2017;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
  6. </connectionStrings>
  7.  
  8. <appSettings>
  9. <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true"/>
  10. </appSettings>
  11. <system.web>
  12. <compilation debug="true" targetFramework="4.5.2"/>
  13. <httpRuntime targetFramework="4.5.2"/>
  14. <httpModules>
  15. <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web"/>
  16. </httpModules>
  17. </system.web>
  18. <system.serviceModel>
  19. <behaviors>
  20. <serviceBehaviors>
  21. <behavior>
  22. <!-- Para evitar revelar información de los metadatos, establezca los valores siguientes en false antes de la implementación -->
  23. <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
  24. <!-- Para recibir detalles de las excepciones en los fallos, con el fin de poder realizar la depuración, establezca el valor siguiente en true. Para no revelar información sobre las excepciones, establézcalo en false antes de la implementación -->
  25. <serviceDebug includeExceptionDetailInFaults="false"/>
  26. </behavior>
  27. </serviceBehaviors>
  28. </behaviors>
  29. <protocolMapping>
  30. <add binding="basicHttpsBinding" scheme="https"/>
  31. </protocolMapping>
  32. <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
  33. </system.serviceModel>
  34. <system.webServer>
  35. <modules runAllManagedModulesForAllRequests="true">
  36. <remove name="ApplicationInsightsWebTracking"/>
  37. <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web"
  38. preCondition="managedHandler"/>
  39. </modules>
  40. <!--
  41. Para examinar el directorio raíz de la aplicación web durante la depuración, establezca el valor siguiente en true.
  42. Establézcalo en false antes de la implementación para evitar revelar información sobre la carpeta de aplicación web.
  43. -->
  44. <directoryBrowse enabled="true"/>
  45. <validation validateIntegratedModeConfiguration="false"/>
  46. </system.webServer>
  47.  
  48. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement