Changeset 15005
- Timestamp:
- 05/31/17 10:33:21 (8 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.Hive.Slave.WindowsService/3.3/app.config
r14738 r15005 79 79 <value>00:00:40</value> 80 80 </setting> 81 <setting name="CheckpointInterval" serializeAs="String"> 82 <value>18:00:00</value> 83 </setting> 84 <setting name="CheckpointCheckInterval" serializeAs="String"> 85 <value>00:05:00</value> 86 </setting> 81 87 </HeuristicLab.Clients.Hive.SlaveCore.Properties.Settings> 82 88 <HeuristicLab.Clients.Hive.Settings> … … 113 119 </userSettings> 114 120 121 <system.serviceModel> 122 <bindings> 123 <netTcpBinding> 124 <binding name="NetBinding_IHiveService" receiveTimeout="00:20:00" 125 sendTimeout="00:20:00" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" 126 maxReceivedMessageSize="2147483647"> 127 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" 128 maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> 129 <security mode="TransportWithMessageCredential"> 130 <message clientCredentialType="UserName" /> 131 </security> 132 </binding> 133 </netTcpBinding> 134 <wsHttpBinding> 135 <binding name="WSHttpBinding_IHiveService" receiveTimeout="00:20:00" 136 sendTimeout="00:20:00" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"> 137 <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" 138 maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" /> 139 <security> 140 <message clientCredentialType="UserName" /> 141 </security> 142 </binding> 143 </wsHttpBinding> 144 </bindings> 145 <services> 146 <service name="HeuristicLab.Clients.Hive.SlaveCore.SlaveCommunicationService"> 147 <endpoint address="net.pipe://localhost/HeuristicLabSlaveCom" binding="netNamedPipeBinding" contract="HeuristicLab.Clients.Hive.SlaveCore.ServiceContracts.ISlaveCommunication"/> 148 </service> 149 </services> 150 <client> 151 <endpoint name="SlaveCommunicationServiceEndpoint" address="net.pipe://localhost/HeuristicLabSlaveCom" binding="netNamedPipeBinding" contract="HeuristicLab.Clients.Hive.SlaveCore.ServiceContracts.ISlaveCommunication"/> 152 <endpoint address="http://services.heuristiclab.com/Hive-3.3/HiveService.svc" 153 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" 154 contract="HeuristicLab.Clients.Hive.IHiveService" name="WSHttpBinding_IHiveService"> 155 <identity> 156 <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" /> 157 </identity> 158 </endpoint> 159 <endpoint address="net.tcp://services.heuristiclab.com/Hive-3.3/HiveService.svc" 160 binding="netTcpBinding" bindingConfiguration="NetBinding_IHiveService" 161 contract="HeuristicLab.Clients.Hive.IHiveService" name="NetBinding_IHiveService"> 162 <identity> 163 <dns value="services.heuristiclab.com" /> 164 </identity> 165 </endpoint> 166 </client> 167 </system.serviceModel> 168 115 169 <runtime> 116 170 <gcServer enabled="true"/> -
trunk/sources/HeuristicLab.Clients.Hive.Slave/3.3/app.config
r14738 r15005 1 <?xml version="1.0" ?>1 <?xml version="1.0" encoding="utf-8"?> 2 2 <configuration> 3 3 <configSections>
Note: See TracChangeset
for help on using the changeset viewer.