Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Web.config @ 5700

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

#1433 adjusted HLWebOKBAdminPlugin to new Service (AdministrationService)

File size: 8.6 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  <!--Implemented-->
10  <connectionStrings>
11    <add name="HeuristicLab.Authentication"
12         connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>   
13  </connectionStrings>
14  <!--ImplementedEND-->
15
16  <system.web>
17    <compilation debug="true" targetFramework="4.0">
18      <assemblies>
19        <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
20        <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
21        <add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
22      </assemblies>
23    </compilation>
24
25    <authentication mode="Forms">
26      <forms loginUrl="~/Account/LogOn" timeout="2880" />
27    </authentication>
28
29    <!--<membership>
30      <providers>
31        <clear/>
32        <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
33             enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
34             maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
35             applicationName="/" />
36      </providers>
37    </membership>-->
38
39    <profile>
40      <providers>
41        <clear/>
42        <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
43      </providers>
44    </profile>
45
46    <!--<roleManager enabled="false">
47      <providers>
48        <clear/>
49        <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
50        <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
51      </providers>
52    </roleManager>-->
53
54    <pages>
55      <namespaces>
56        <add namespace="System.Web.Mvc" />
57        <add namespace="System.Web.Mvc.Ajax" />
58        <add namespace="System.Web.Mvc.Html" />
59        <add namespace="System.Web.Routing" />
60      </namespaces>
61    </pages>
62   <!--Implemented-->
63        <membership defaultProvider="AspNetSqlMembershipProvider">
64            <providers>
65              <clear/>
66              <add name="AspNetSqlMembershipProvider"
67                   type="System.Web.Security.SqlMembershipProvider"
68                   connectionStringName="HeuristicLab.Authentication"
69                   enablePasswordRetrieval="true"
70                   enablePasswordReset="true"
71                   requiresQuestionAndAnswer="false"
72                   requiresUniqueEmail="false"
73                   maxInvalidPasswordAttempts="5"
74                   minRequiredPasswordLength="6"
75                   minRequiredNonalphanumericCharacters="0"
76                   passwordAttemptWindow="10"
77                   passwordFormat="Clear"
78                   applicationName="HeuristicLab.Authentication" />
79            </providers>
80          </membership>
81
82          <roleManager enabled="true">
83            <providers>
84              <clear/>
85              <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
86            </providers>
87          </roleManager>
88
89<!--ImplementedEND--> 
90     
91   
92  </system.web>
93
94  <system.webServer>
95    <validation validateIntegratedModeConfiguration="false"/>
96    <modules runAllManagedModulesForAllRequests="true"/>
97  </system.webServer>
98
99  <runtime>
100    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
101      <dependentAssembly>
102        <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
103        <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />
104      </dependentAssembly>
105    </assemblyBinding>
106  </runtime>
107  <system.serviceModel>
108    <bindings>
109      <wsHttpBinding>
110        <binding name="WSHttpBinding_IOKBService" closeTimeout="00:01:00"
111          openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
112          bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
113          maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
114          textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
115          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
116            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
117          <reliableSession ordered="true" inactivityTimeout="00:10:00"
118            enabled="false" />
119          <security mode="Message">
120            <transport clientCredentialType="Windows" proxyCredentialType="None"
121              realm="" />
122            <message clientCredentialType="UserName" negotiateServiceCredential="true"
123              algorithmSuite="Default" />
124          </security>
125        </binding>
126        <binding name="WSHttpBinding_IAdministrationService" closeTimeout="00:01:00"
127          openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
128          bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
129          maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
130          textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
131          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
132            maxBytesPerRead="4096" maxNameTableCharCount="16384" />
133          <reliableSession ordered="true" inactivityTimeout="00:10:00"
134            enabled="false" />
135          <security mode="Message">
136            <transport clientCredentialType="Windows" proxyCredentialType="None"
137              realm="" />
138            <message clientCredentialType="UserName" negotiateServiceCredential="true"
139              algorithmSuite="Default" />
140          </security>
141        </binding>
142      </wsHttpBinding>
143    </bindings>
144    <client>
145      <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService"
146        binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IOKBService"
147        contract="OKBService.IOKBService" name="WSHttpBinding_IOKBService">
148        <identity>
149          <certificate encodedValue="AwAAAAEAAAAUAAAAIQrvmocYcMi5fmvHzIyVXAYioh8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDkyNTExNDY1N1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtTYRDoRxGMo6KzVypLUKzMv6NbGgabF1PpORsk59JyT/W3bw6DDVAmXkxKEYyunIRHTyQp1/o9Or1n/lAVe0DyQYYvRrlVWn16kYbBwBG/5op3urgUo456WTfMvpezvUpII+U6p5lM2nJlCwLSVplbzbWg0Q45l813+9mXqfyPQIDAQABo0kwRzBFBgNVHQEEPjA8gBC9NBW28XBwPiaJJgiOU6W9oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQADgYEAdSi0jtQ/54Lqz5lWKk9EzTVImUn6gppz8JQGjo0lPa4PrsLplk2jK8Z7esgMLr3VqQPIgb92/ekrDMRttMi9MDgrSWbOPKjINvyC4mMK2KgfgHAfUQM8kH223GReUUzwF99FG8HhzoqrUMIlmCvrf5EZ19FBPEygFNOew0jhiHY=" />
150        </identity>
151      </endpoint>
152      <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/AdministrationService.svc"
153        binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdministrationService"
154        contract="OKBAdministrationService.IAdministrationService" name="WSHttpBinding_IAdministrationService">
155        <identity>
156          <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
157        </identity>
158      </endpoint>
159    </client>
160  </system.serviceModel>
161</configuration>
162
Note: See TracBrowser for help on using the repository browser.