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