[4604] | 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>
|
---|
[5799] | 9 | <!--Implemented
|
---|
[4604] | 10 | <connectionStrings>
|
---|
[4729] | 11 | <add name="HeuristicLab.Authentication"
|
---|
[4786] | 12 | connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
|
---|
[4604] | 13 | </connectionStrings>
|
---|
[5799] | 14 | ImplementedEND-->
|
---|
[6303] | 15 | <appSettings>
|
---|
| 16 | <add key="ChartImageHandler" value="storage=memory;deleteAfterServicing=true;"/>
|
---|
| 17 | </appSettings>
|
---|
[4604] | 18 |
|
---|
[6303] | 19 |
|
---|
[4604] | 20 | <system.web>
|
---|
| 21 | <compilation debug="true" targetFramework="4.0">
|
---|
| 22 | <assemblies>
|
---|
| 23 | <add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
---|
| 24 | <add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
---|
| 25 | <add assembly="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
|
---|
| 26 | </assemblies>
|
---|
| 27 | </compilation>
|
---|
| 28 |
|
---|
| 29 | <authentication mode="Forms">
|
---|
| 30 | <forms loginUrl="~/Account/LogOn" timeout="2880" />
|
---|
| 31 | </authentication>
|
---|
[5799] | 32 | <!--
|
---|
| 33 | <membership>
|
---|
[4604] | 34 | <providers>
|
---|
| 35 | <clear/>
|
---|
[5799] | 36 | <add name="HLServiceMembershipProvider" type=" HLWebPluginHost.Lib.HLServiceMembershipProvider"
|
---|
| 37 | enablePasswordRetrieval="false" enablePasswordReset="false" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
|
---|
[4604] | 38 | applicationName="/" />
|
---|
| 39 | </providers>
|
---|
[5799] | 40 | </membership>
|
---|
[4604] | 41 |
|
---|
| 42 | <profile>
|
---|
| 43 | <providers>
|
---|
| 44 | <clear/>
|
---|
| 45 | <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
|
---|
| 46 | </providers>
|
---|
| 47 | </profile>
|
---|
[5799] | 48 | -->
|
---|
[4729] | 49 | <!--<roleManager enabled="false">
|
---|
[4604] | 50 | <providers>
|
---|
| 51 | <clear/>
|
---|
| 52 | <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
|
---|
| 53 | <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
|
---|
| 54 | </providers>
|
---|
[4729] | 55 | </roleManager>-->
|
---|
[4604] | 56 |
|
---|
| 57 | <pages>
|
---|
| 58 | <namespaces>
|
---|
| 59 | <add namespace="System.Web.Mvc" />
|
---|
| 60 | <add namespace="System.Web.Mvc.Ajax" />
|
---|
| 61 | <add namespace="System.Web.Mvc.Html" />
|
---|
| 62 | <add namespace="System.Web.Routing" />
|
---|
| 63 | </namespaces>
|
---|
[6164] | 64 |
|
---|
| 65 | <controls>
|
---|
| 66 | <add tagPrefix="asp"
|
---|
| 67 | namespace="System.Web.UI.DataVisualization.Charting"
|
---|
| 68 | assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
---|
| 69 | </controls>
|
---|
| 70 |
|
---|
[4604] | 71 | </pages>
|
---|
[5799] | 72 |
|
---|
[5988] | 73 | <membership defaultProvider="HLServiceMembershipProvider">
|
---|
[4729] | 74 | <providers>
|
---|
| 75 | <clear/>
|
---|
[5799] | 76 | <add name="HLServiceMembershipProvider"
|
---|
| 77 | type="HLWebPluginHost.Lib.HLServiceMembershipProvider"
|
---|
| 78 | enablePasswordRetrieval="false"
|
---|
| 79 | enablePasswordReset="false"
|
---|
[4729] | 80 | applicationName="HeuristicLab.Authentication" />
|
---|
| 81 | </providers>
|
---|
[5988] | 82 | </membership>
|
---|
[5799] | 83 | <!--
|
---|
[4729] | 84 | <roleManager enabled="true">
|
---|
| 85 | <providers>
|
---|
| 86 | <clear/>
|
---|
| 87 | <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="HeuristicLab.Authentication" applicationName="HeuristicLab.Authentication" />
|
---|
| 88 | </providers>
|
---|
| 89 | </roleManager>
|
---|
[5799] | 90 | -->
|
---|
[4729] | 91 |
|
---|
[6164] | 92 |
|
---|
| 93 | <httpHandlers>
|
---|
| 94 | <add path="ChartImg.axd" verb="*" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
|
---|
| 95 | validate="false" />
|
---|
| 96 | </httpHandlers>
|
---|
| 97 |
|
---|
| 98 |
|
---|
| 99 |
|
---|
[4604] | 100 | </system.web>
|
---|
| 101 |
|
---|
| 102 | <system.webServer>
|
---|
| 103 | <validation validateIntegratedModeConfiguration="false"/>
|
---|
| 104 | <modules runAllManagedModulesForAllRequests="true"/>
|
---|
[6164] | 105 | <handlers>
|
---|
| 106 |
|
---|
| 107 | <add name="ChartImageHandler"
|
---|
| 108 | preCondition="integratedMode"
|
---|
[6303] | 109 | verb="GET,HEAD,POST"
|
---|
[6164] | 110 | path="ChartImg.axd"
|
---|
[6303] | 111 | type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
|
---|
[6164] | 112 |
|
---|
| 113 |
|
---|
| 114 | </handlers>
|
---|
| 115 |
|
---|
[4604] | 116 | </system.webServer>
|
---|
| 117 |
|
---|
| 118 | <runtime>
|
---|
| 119 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
---|
| 120 | <dependentAssembly>
|
---|
| 121 | <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
---|
| 122 | <bindingRedirect oldVersion="1.0.0.0" newVersion="2.0.0.0" />
|
---|
| 123 | </dependentAssembly>
|
---|
| 124 | </assemblyBinding>
|
---|
| 125 | </runtime>
|
---|
[5763] | 126 |
|
---|
[4736] | 127 | <system.serviceModel>
|
---|
| 128 | <bindings>
|
---|
| 129 | <wsHttpBinding>
|
---|
[5991] | 130 | <binding name="WSHttpBinding_IOKBService" closeTimeout="00:01:00"
|
---|
[4736] | 131 | openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
|
---|
| 132 | bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
|
---|
| 133 | maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
|
---|
| 134 | textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
| 135 | <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
|
---|
| 136 | maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
| 137 | <reliableSession ordered="true" inactivityTimeout="00:10:00"
|
---|
| 138 | enabled="false" />
|
---|
| 139 | <security mode="Message">
|
---|
| 140 | <transport clientCredentialType="Windows" proxyCredentialType="None"
|
---|
| 141 | realm="" />
|
---|
| 142 | <message clientCredentialType="UserName" negotiateServiceCredential="true"
|
---|
| 143 | algorithmSuite="Default" />
|
---|
| 144 | </security>
|
---|
[5764] | 145 | </binding>
|
---|
[5991] | 146 | <binding name="WSHttpBinding_IAuthenticationService" closeTimeout="00:01:00"
|
---|
| 147 | openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
|
---|
| 148 | bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
|
---|
| 149 | maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
|
---|
| 150 | textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
| 151 | <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
|
---|
| 152 | maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
| 153 | <reliableSession ordered="true" inactivityTimeout="00:10:00"
|
---|
| 154 | enabled="false" />
|
---|
| 155 | <security mode="Message">
|
---|
| 156 | <transport clientCredentialType="Windows" proxyCredentialType="None"
|
---|
| 157 | realm="" />
|
---|
| 158 | <message clientCredentialType="UserName" negotiateServiceCredential="true"
|
---|
| 159 | algorithmSuite="Default" />
|
---|
| 160 | </security>
|
---|
| 161 | </binding>
|
---|
| 162 | <binding name="WSHttpBinding_IAdministrationService" closeTimeout="00:01:00"
|
---|
| 163 | openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
|
---|
| 164 | bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
|
---|
| 165 | maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
|
---|
| 166 | textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
| 167 | <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
|
---|
| 168 | maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
| 169 | <reliableSession ordered="true" inactivityTimeout="00:10:00"
|
---|
| 170 | enabled="false" />
|
---|
| 171 | <security mode="Message">
|
---|
| 172 | <transport clientCredentialType="Windows" proxyCredentialType="None"
|
---|
| 173 | realm="" />
|
---|
| 174 | <message clientCredentialType="UserName" negotiateServiceCredential="true"
|
---|
| 175 | algorithmSuite="Default" />
|
---|
| 176 | </security>
|
---|
| 177 | </binding>
|
---|
[6303] | 178 | <binding name="QueryService" closeTimeout="00:03:00" openTimeout="00:03:00"
|
---|
| 179 | receiveTimeout="00:10:00" sendTimeout="00:03:00" bypassProxyOnLocal="false"
|
---|
[5991] | 180 | transactionFlow="false" hostNameComparisonMode="StrongWildcard"
|
---|
[6164] | 181 | maxBufferPoolSize="524288" maxReceivedMessageSize="99999999" messageEncoding="Text"
|
---|
[5991] | 182 | textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
|
---|
| 183 | <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
|
---|
| 184 | maxBytesPerRead="4096" maxNameTableCharCount="16384" />
|
---|
| 185 | <reliableSession ordered="true" inactivityTimeout="00:10:00"
|
---|
| 186 | enabled="false" />
|
---|
| 187 | <security mode="Message">
|
---|
| 188 | <transport clientCredentialType="Windows" proxyCredentialType="None"
|
---|
| 189 | realm="" />
|
---|
| 190 | <message clientCredentialType="UserName" negotiateServiceCredential="true"
|
---|
| 191 | algorithmSuite="Default" />
|
---|
| 192 | </security>
|
---|
| 193 | </binding>
|
---|
[4736] | 194 | </wsHttpBinding>
|
---|
| 195 | </bindings>
|
---|
| 196 | <client>
|
---|
[5991] | 197 | <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService"
|
---|
| 198 | binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IOKBService"
|
---|
| 199 | contract="OKBService.IOKBService" name="WSHttpBinding_IOKBService">
|
---|
| 200 | <identity>
|
---|
| 201 | <certificate encodedValue="AwAAAAEAAAAUAAAAIQrvmocYcMi5fmvHzIyVXAYioh8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDkyNTExNDY1N1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtTYRDoRxGMo6KzVypLUKzMv6NbGgabF1PpORsk59JyT/W3bw6DDVAmXkxKEYyunIRHTyQp1/o9Or1n/lAVe0DyQYYvRrlVWn16kYbBwBG/5op3urgUo456WTfMvpezvUpII+U6p5lM2nJlCwLSVplbzbWg0Q45l813+9mXqfyPQIDAQABo0kwRzBFBgNVHQEEPjA8gBC9NBW28XBwPiaJJgiOU6W9oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghB/K4IUpf//oE5Y7z4eayB9MAkGBSsOAwIdBQADgYEAdSi0jtQ/54Lqz5lWKk9EzTVImUn6gppz8JQGjo0lPa4PrsLplk2jK8Z7esgMLr3VqQPIgb92/ekrDMRttMi9MDgrSWbOPKjINvyC4mMK2KgfgHAfUQM8kH223GReUUzwF99FG8HhzoqrUMIlmCvrf5EZ19FBPEygFNOew0jhiHY=" />
|
---|
| 202 | </identity>
|
---|
| 203 | </endpoint>
|
---|
| 204 | <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/AuthenticationService.svc"
|
---|
| 205 | binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAuthenticationService"
|
---|
| 206 | contract="OKBAuthenticationService.IAuthenticationService" name="WSHttpBinding_IAuthenticationService">
|
---|
| 207 | <identity>
|
---|
| 208 | <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
|
---|
| 209 | </identity>
|
---|
| 210 | </endpoint>
|
---|
[5700] | 211 | <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/AdministrationService.svc"
|
---|
[5991] | 212 | binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdministrationService"
|
---|
| 213 | contract="OKBAdministrationService.IAdministrationService" name="WSHttpBinding_IAdministrationService">
|
---|
[5700] | 214 | <identity>
|
---|
| 215 | <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
|
---|
| 216 | </identity>
|
---|
[5764] | 217 | </endpoint>
|
---|
[5991] | 218 | <endpoint address="http://services.heuristiclab.com/OKB.SPR-3.3/QueryService.svc"
|
---|
| 219 | binding="wsHttpBinding" bindingConfiguration="QueryService"
|
---|
| 220 | contract="OKBQueryService.IQueryService" name="QueryService">
|
---|
| 221 | <identity>
|
---|
| 222 | <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
|
---|
| 223 | </identity>
|
---|
| 224 | </endpoint>
|
---|
[4736] | 225 | </client>
|
---|
| 226 | </system.serviceModel>
|
---|
[4604] | 227 | </configuration>
|
---|
| 228 |
|
---|