Advertisement
Guest User

Untitled

a guest
Jul 14th, 2011
559
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.33 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <configuration>
  3. <configSections>
  4. </configSections>
  5. <connectionStrings>
  6. <add name="ApplicationServices" connectionString="data source=sql\dev;Initial Catalog=Typhoeus;Integrated Security=True" providerName="System.Data.SqlClient" />
  7. <add name="TyphonConnection" connectionString="data source=sql\dev;Initial Catalog=Typhoeus;Integrated Security=True" providerName="System.Data.SqlClient" />
  8. <add name="TyphoeusConnectionString" connectionString="data source=sql\dev;Initial Catalog=Typhoeus;Integrated Security=True" providerName="System.Data.Sql Client" />
  9. </connectionStrings>
  10. <appSettings>
  11. <add key="BarcodeProAspNet50LicenseOwner" value="*omitted*" />
  12. <add key="BarcodeProAspNet50LicenseKey" value="*ommited*" />
  13. </appSettings>
  14. <system.web>
  15. <machineKey validationKey="*omitted*" decryptionKey="*omitted*" validation="SHA1" decryption="AES" />
  16. <httpHandlers>
  17. <add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />
  18. </httpHandlers>
  19. <httpModules>
  20. <add name="ScriptModule" type="System.Web.Handlers.ScriptModule,System.Web.Extensions, Version=1.0.61025.0, Culture=neutral,PublicKeyToken=31bf3856ad364e35" />
  21. </httpModules>
  22. <sessionState allowCustomSqlDatabase="true" cookieless="AutoDetect" mode="SQLServer" sqlConnectionString="Server=sql\dev;Database=ASPState;Integrated Security=true" timeout="20" />
  23. <customErrors mode="Off" />
  24. <compilation debug="true" targetFramework="4.0">
  25. <assemblies>
  26. <add assembly="System.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
  27. <add assembly="System.Web.Extensions.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
  28. <add assembly="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
  29. <add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
  30. <add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
  31. <add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
  32. <add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
  33.  
  34. </assemblies>
  35. <buildProviders>
  36. <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  37. </buildProviders>
  38. </compilation>
  39. <authentication mode="Forms">
  40. <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
  41. </authentication>
  42. <httpRuntime requestValidationMode="2.0" />
  43. <membership defaultProvider="Typhon">
  44. <providers>
  45. <clear />
  46. <add name="Typhon" type="Typhon.Security.RegistrationMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="3" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="60" applicationName="Typhon" />
  47. <add name="Openid" type="Typhon.Security.OpenIdMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="3" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="60" applicationName="Typhon" />
  48. </providers>
  49. </membership>
  50. <profile>
  51. <providers>
  52. <clear />
  53. <add name="AspNetSqlProfileProvider" type="Typhon.Security.RoleManagement" connectionStringName="ApplicationServices" applicationName="Typhon" />
  54. </providers>
  55. </profile>
  56. <roleManager enabled="true" cookieProtection="All" cacheRolesInCookie="false">
  57. <providers>
  58. <clear />
  59. <add connectionStringName="ApplicationServices" applicationName="Typhon" name="AspNetSqlRoleProvider" type="Typhon.Security.RoleManagement" />
  60. </providers>
  61. </roleManager>
  62. <pages viewStateEncryptionMode="Auto" enableEventValidation="false" controlRenderingCompatibilityVersion="4.0" clientIDMode="AutoID">
  63. <controls>
  64. <add tagPrefix="ajax" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit"></add>
  65. </controls>
  66. </pages>
  67. </system.web>
  68. <system.webServer>
  69. <defaultDocument>
  70. <files>
  71. <clear />
  72. <add value="index.aspx" />
  73. <add value="login.aspx" />
  74. </files>
  75. </defaultDocument>
  76. <modules runAllManagedModulesForAllRequests="true" />
  77. <validation validateIntegratedModeConfiguration="false" />
  78. <handlers>
  79. <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
  80. </handlers>
  81. </system.webServer>
  82. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement