- Timestamp:
- 02/18/15 10:54:32 (10 years ago)
- Location:
- branches/HeuristicLab.DatasetRefactor/sources
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.DatasetRefactor/sources
- Property svn:mergeinfo changed
-
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Hive.Web/Hive-3.3/Status.aspx.cs
r11171 r12031 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 4Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. -
branches/HeuristicLab.DatasetRefactor/sources/HeuristicLab.Services.Hive.Web/Hive-3.3/Web.config
r9665 r12031 3 3 <configSections> 4 4 <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"> 5 <section name="HeuristicLab.Services.Hive.DataAccess.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" 5 <section name="HeuristicLab.Services.Hive.DataAccess.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/> 6 6 </sectionGroup> 7 7 </configSections> 8 9 8 <appSettings> 10 <add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;" 9 <add key="ChartImageHandler" value="storage=file;timeout=20;dir=c:\TempImageFiles\;"/> 11 10 </appSettings> 12 11 <applicationSettings> 13 12 <HeuristicLab.Services.Hive.DataAccess.Settings> 14 13 <setting name="LongRunningDatabaseCommandTimeout" serializeAs="String"> 15 14 <value>00:05:00</value> … … 22 21 <connectionStrings> 23 22 <add name="HeuristicLab.Authentication" connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/> 24 <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" 25 connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" 26 providerName="System.Data.SqlClient" /> 23 <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString" connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;" providerName="System.Data.SqlClient"/> 27 24 </connectionStrings> 25 <!-- 26 For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367. 27 28 The following attributes can be set on the <httpRuntime> tag. 29 <system.Web> 30 <httpRuntime targetFramework="4.5" /> 31 </system.Web> 32 --> 28 33 <system.web> 29 <authentication mode="Forms" 30 <compilation debug="true" targetFramework="4. 0">34 <authentication mode="Forms"/> 35 <compilation debug="true" targetFramework="4.5"> 31 36 <assemblies> 32 37 <add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> … … 47 52 <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"> 48 53 <controls> 49 <add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting" 50 assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 54 <add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting" assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 51 55 </controls> 52 56 </pages> … … 60 64 <wsHttpBinding> 61 65 <binding name="WSHttpBinding_IHiveService" messageEncoding="Text" receiveTimeout="00:35:00" sendTimeout="00:35:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"> 62 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" 66 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/> 63 67 <security mode="Message"> 64 68 <transport clientCredentialType="Certificate"/> … … 69 73 <netTcpBinding> 70 74 <binding name="NetTcpBinding_IHiveService" portSharingEnabled="true" receiveTimeout="00:35:00" sendTimeout="00:35:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"> 71 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" 75 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/> 72 76 <security mode="TransportWithMessageCredential"> 73 77 <transport clientCredentialType="Certificate"/> … … 100 104 <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration="" name="MexTcpEndpoint" contract="IMetadataExchange"/> 101 105 <endpoint address="" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" name="WSHttpBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService"/> 102 <endpoint address="net.tcp://services.heuristiclab.com/Hive-3.3/HiveService.svc" binding="netTcpBinding" 106 <endpoint address="net.tcp://services.heuristiclab.com/Hive-3.3/HiveService.svc" binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IHiveService" name="NetBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService"/> 103 107 </service> 104 108 </services> … … 106 110 </system.serviceModel> 107 111 <system.webServer> 108 <directoryBrowse enabled="true" 112 <directoryBrowse enabled="true"/> 109 113 <handlers> 110 <remove name="ChartImageHandler" /> 111 <add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST" 112 path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 114 <remove name="ChartImageHandler"/> 115 <add name="ChartImageHandler" preCondition="integratedMode" verb="GET,HEAD,POST" path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler, System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> 113 116 </handlers> 114 </system.webServer> 117 </system.webServer> 115 118 </configuration>
Note: See TracChangeset
for help on using the changeset viewer.