Free cookie consent management tool by TermsFeed Policy Generator

source: branches/WebApplication/MVC2/HLWebOKBQueryPlugin/Web.config @ 5756

Last change on this file since 5756 was 5756, checked in by cfleisch, 13 years ago

Test Query Plugin added #1439

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