Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Web.config @ 5757

Last change on this file since 5757 was 5700, checked in by wtollsch, 14 years ago

#1433 adjusted HLWebOKBAdminPlugin to new Service (AdministrationService)

File size: 9.5 KB
Line 
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_IAuthenticationService" 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        <binding name="WSHttpBinding_IAdministrationService" closeTimeout="00:01:00"
112          openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
113          bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
114          maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
115          textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
116          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
117            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
118          <reliableSession ordered="true" inactivityTimeout="00:10:00"
119            enabled="false" />
120          <security mode="Message">
121            <transport clientCredentialType="Windows" proxyCredentialType="None"
122              realm="" />
123            <message clientCredentialType="UserName" negotiateServiceCredential="true"
124              algorithmSuite="Default" />
125          </security>
126        </binding>
127      </wsHttpBinding>
128    </bindings>
129    <client>
130      <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService"
131        binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IOKBService"
132        contract="OKBService.IOKBService" name="WSHttpBinding_IOKBService">
133        <identity>
134          <certificate encodedValue="AwAAAAEAAAAUAAAAIQrvmocYcMi5fmvHzIyVXAYioh8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDkyNTExNDY1N1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtTYRDoRxGMo6KzVypLUKzMv6NbGgabF1PpORsk59JyT/W3bw6DDVAmXkxKEYyunIRHTyQp1/o9Or1n/lAVe0DyQYYvRrlVWn16kYbBwBG/5op3urgUo456WTfMvpezvUpII+U6p5lM2nJlCwLSVplbzbWg0Q45l813+9mXqfyPQIDAQABo0kwRzBFBgNVHQEEPjA8gBC9NBW28XBwPiaJJgiOU6W9oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQADgYEAdSi0jtQ/54Lqz5lWKk9EzTVImUn6gppz8JQGjo0lPa4PrsLplk2jK8Z7esgMLr3VqQPIgb92/ekrDMRttMi9MDgrSWbOPKjINvyC4mMK2KgfgHAfUQM8kH223GReUUzwF99FG8HhzoqrUMIlmCvrf5EZ19FBPEygFNOew0jhiHY=" />
135        </identity>
136      </endpoint>
137      <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/AuthenticationService.svc"
138        binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAuthenticationService"
139        contract="OKBAuthenticationService.IAuthenticationService" name="WSHttpBinding_IAuthenticationService">
140        <identity>
141          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
142        </identity>
143      </endpoint>
144      <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/AdministrationService.svc"
145        binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdministrationService"
146        contract="OKBAdministrationService.IAdministrationService" name="WSHttpBinding_IAdministrationService">
147        <identity>
148          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
149        </identity>
150      </endpoint>
151    </client>
152  </system.serviceModel>
153</configuration>
154
Note: See TracBrowser for help on using the repository browser.