[4985] | 1 | <?xml version="1.0"?>
|
---|
| 2 |
|
---|
| 3 | <!--
|
---|
| 4 | For more information on how to configure your ASP.NET application, please visit
|
---|
| 5 | http://go.microsoft.com/fwlink/?LinkId=152368
|
---|
| 6 | -->
|
---|
| 7 |
|
---|
| 8 | <configuration>
|
---|
| 9 | <connectionStrings>
|
---|
| 10 | <add name="ApplicationServices"
|
---|
| 11 | connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true"
|
---|
| 12 | providerName="System.Data.SqlClient" />
|
---|
| 13 | </connectionStrings>
|
---|
| 14 |
|
---|
| 15 | <system.web>
|
---|
| 16 | <compilation debug="true" targetFramework="4.0">
|
---|
| 17 | <assemblies>
|
---|
| 18 | <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
---|
| 19 | <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
---|
| 20 | <add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
---|
| 21 | </assemblies>
|
---|
| 22 | </compilation>
|
---|
| 23 |
|
---|
| 24 | <authentication mode="Forms">
|
---|
| 25 | <forms loginUrl="~/Account/LogOn" timeout="2880" />
|
---|
| 26 | </authentication>
|
---|
| 27 |
|
---|
| 28 | <membership>
|
---|
| 29 | <providers>
|
---|
| 30 | <clear/>
|
---|
| 31 | <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
|
---|
| 32 | enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
|
---|
| 33 | maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
|
---|
| 34 | applicationName="/" />
|
---|
| 35 | </providers>
|
---|
| 36 | </membership>
|
---|
| 37 |
|
---|
| 38 | <profile>
|
---|
| 39 | <providers>
|
---|
| 40 | <clear/>
|
---|
| 41 | <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
|
---|
| 42 | </providers>
|
---|
| 43 | </profile>
|
---|
| 44 |
|
---|
| 45 | <roleManager enabled="false">
|
---|
| 46 | <providers>
|
---|
| 47 | <clear/>
|
---|
| 48 | <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
|
---|
| 49 | <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
|
---|
| 50 | </providers>
|
---|
| 51 | </roleManager>
|
---|
| 52 |
|
---|
| 53 | <pages>
|
---|
| 54 | <namespaces>
|
---|
| 55 | <add namespace="System.Web.Mvc" />
|
---|
| 56 | <add namespace="System.Web.Mvc.Ajax" />
|
---|
| 57 | <add namespace="System.Web.Mvc.Html" />
|
---|
| 58 | <add namespace="System.Web.Routing" />
|
---|
| 59 | </namespaces>
|
---|
| 60 | </pages>
|
---|
| 61 | </system.web>
|
---|
| 62 |
|
---|
| 63 | <system.webServer>
|
---|
| 64 | <validation validateIntegratedModeConfiguration="false"/>
|
---|
| 65 | <modules runAllManagedModulesForAllRequests="true"/>
|
---|
| 66 | </system.webServer>
|
---|
| 67 |
|
---|
| 68 | <runtime>
|
---|
| 69 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
---|
| 70 | <dependentAssembly>
|
---|
| 71 | <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
---|
| 72 | <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />
|
---|
| 73 | </dependentAssembly>
|
---|
| 74 | </assemblyBinding>
|
---|
| 75 | </runtime>
|
---|
| 76 | <system.serviceModel>
|
---|
| 77 | <bindings>
|
---|
| 78 | <wsHttpBinding>
|
---|
| 79 | <binding name="WSHttpBinding_IOKBService" closeTimeout="00:01:00"
|
---|
| 80 | openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
|
---|
| 81 | bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
|
---|
| 82 | maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
|
---|
| 83 | textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
| 84 | <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
|
---|
| 85 | maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
| 86 | <reliableSession ordered="true" inactivityTimeout="00:10:00"
|
---|
| 87 | enabled="false" />
|
---|
| 88 | <security mode="Message">
|
---|
| 89 | <transport clientCredentialType="Windows" proxyCredentialType="None"
|
---|
| 90 | realm="" />
|
---|
| 91 | <message clientCredentialType="UserName" negotiateServiceCredential="true"
|
---|
| 92 | algorithmSuite="Default" />
|
---|
| 93 | </security>
|
---|
| 94 | </binding>
|
---|
| 95 | <binding name="WSHttpBinding_IOKBService1" closeTimeout="00:01:00"
|
---|
| 96 | openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
|
---|
| 97 | bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
|
---|
| 98 | maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
|
---|
| 99 | textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
| 100 | <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
|
---|
| 101 | maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
| 102 | <reliableSession ordered="true" inactivityTimeout="00:10:00"
|
---|
| 103 | enabled="false" />
|
---|
| 104 | <security mode="Message">
|
---|
| 105 | <transport clientCredentialType="Windows" proxyCredentialType="None"
|
---|
| 106 | realm="" />
|
---|
| 107 | <message clientCredentialType="UserName" negotiateServiceCredential="true"
|
---|
| 108 | algorithmSuite="Default" />
|
---|
| 109 | </security>
|
---|
| 110 | </binding>
|
---|
| 111 | </wsHttpBinding>
|
---|
| 112 | </bindings>
|
---|
| 113 | <client>
|
---|
| 114 | <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService"
|
---|
| 115 | binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IOKBService"
|
---|
| 116 | contract="OKBService.IOKBService" name="WSHttpBinding_IOKBService">
|
---|
| 117 | <identity>
|
---|
| 118 | <certificate encodedValue="AwAAAAEAAAAUAAAAIQrvmocYcMi5fmvHzIyVXAYioh8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDkyNTExNDY1N1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtTYRDoRxGMo6KzVypLUKzMv6NbGgabF1PpORsk59JyT/W3bw6DDVAmXkxKEYyunIRHTyQp1/o9Or1n/lAVe0DyQYYvRrlVWn16kYbBwBG/5op3urgUo456WTfMvpezvUpII+U6p5lM2nJlCwLSVplbzbWg0Q45l813+9mXqfyPQIDAQABo0kwRzBFBgNVHQEEPjA8gBC9NBW28XBwPiaJJgiOU6W9oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQADgYEAdSi0jtQ/54Lqz5lWKk9EzTVImUn6gppz8JQGjo0lPa4PrsLplk2jK8Z7esgMLr3VqQPIgb92/ekrDMRttMi9MDgrSWbOPKjINvyC4mMK2KgfgHAfUQM8kH223GReUUzwF99FG8HhzoqrUMIlmCvrf5EZ19FBPEygFNOew0jhiHY=" />
|
---|
| 119 | </identity>
|
---|
| 120 | </endpoint>
|
---|
| 121 | <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService"
|
---|
| 122 | binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IOKBService1"
|
---|
| 123 | contract="OKBService.IOKBService" name="WSHttpBinding_IOKBService1">
|
---|
| 124 | <identity>
|
---|
| 125 | <certificate encodedValue="AwAAAAEAAAAUAAAAIQrvmocYcMi5fmvHzIyVXAYioh8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDkyNTExNDY1N1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtTYRDoRxGMo6KzVypLUKzMv6NbGgabF1PpORsk59JyT/W3bw6DDVAmXkxKEYyunIRHTyQp1/o9Or1n/lAVe0DyQYYvRrlVWn16kYbBwBG/5op3urgUo456WTfMvpezvUpII+U6p5lM2nJlCwLSVplbzbWg0Q45l813+9mXqfyPQIDAQABo0kwRzBFBgNVHQEEPjA8gBC9NBW28XBwPiaJJgiOU6W9oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQADgYEAdSi0jtQ/54Lqz5lWKk9EzTVImUn6gppz8JQGjo0lPa4PrsLplk2jK8Z7esgMLr3VqQPIgb92/ekrDMRttMi9MDgrSWbOPKjINvyC4mMK2KgfgHAfUQM8kH223GReUUzwF99FG8HhzoqrUMIlmCvrf5EZ19FBPEygFNOew0jhiHY=" />
|
---|
| 126 | </identity>
|
---|
| 127 | </endpoint>
|
---|
| 128 | </client>
|
---|
| 129 | </system.serviceModel>
|
---|
| 130 | </configuration>
|
---|
| 131 |
|
---|