Changeset 1766
- Timestamp:
- 05/08/09 14:09:41 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Security.Server/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Security.Server/3.2/HeuristicLab.Security.Server-3.2.csproj
r1739 r1766 96 96 </ItemGroup> 97 97 <ItemGroup> 98 <ProjectReference Include="..\..\HeuristicLab.Hive.Contracts\3.2\HeuristicLab.Hive.Contracts-3.2.csproj"> 99 <Project>{134F93D7-E7C8-4ECD-9923-7F63259A60D8}</Project> 100 <Name>HeuristicLab.Hive.Contracts-3.2</Name> 101 </ProjectReference> 98 102 <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj"> 99 103 <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project> -
trunk/sources/HeuristicLab.Security.Server/3.2/SecurityServerApplication.cs
r1738 r1766 23 23 private DiscoveryService discService = new DiscoveryService(); 24 24 private Dictionary<string, ServiceHost> runningServices = new Dictionary<string, ServiceHost>(); 25 private NetTcpBinding binding = new NetTcpBinding(SecurityMode.None, true);25 private NetTcpBinding binding = (NetTcpBinding)HeuristicLab.Hive.Contracts.WcfSettings.GetBinding(); 26 26 27 27 private enum Services { … … 45 45 46 46 private String StartService(Services svc, IPAddress ipAddress, int port) { 47 binding.MaxReceivedMessageSize = 5000000;48 binding.SendTimeout = new TimeSpan(0, 0, 0, 0, 20);49 47 string curServiceHost = ""; 50 48 Uri uriTcp;
Note: See TracChangeset
for help on using the changeset viewer.