Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/10/09 13:07:00 (15 years ago)
Author:
gkronber
Message:

changed security mode for grid services to the default mode (Transport). #463 (Grid services allow connections from any user (SecurityMode.None))

Location:
trunk/sources/HeuristicLab.Grid
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Grid/GridClient.cs

    r766 r1213  
    101101      binding.ReaderQuotas.MaxStringContentLength = 100000000; // also 100M chars
    102102      binding.ReaderQuotas.MaxArrayLength = 100000000; // also 100M elements;
    103       binding.Security.Mode = SecurityMode.None;
    104103      factory = new ChannelFactory<IEngineStore>(binding);
    105104      engineStore = factory.CreateChannel(new EndpointAddress(uri));
  • trunk/sources/HeuristicLab.Grid/JobManager.cs

    r1114 r1213  
    9999        binding.ReaderQuotas.MaxStringContentLength = 100000000; // also 100M chars
    100100        binding.ReaderQuotas.MaxArrayLength = 100000000; // also 100M elements;
    101         binding.Security.Mode = SecurityMode.None;
    102101
    103102        factory = new ChannelFactory<IGridServer>(binding);
  • trunk/sources/HeuristicLab.Grid/ServerForm.cs

    r1114 r1213  
    7373        binding.ReaderQuotas.MaxStringContentLength = 100000000; // also 100M chars
    7474        binding.ReaderQuotas.MaxArrayLength = 100000000; // also 100M elements;
    75         binding.Security.Mode = SecurityMode.None;
    76        
    7775
    7876        externalHost.AddServiceEndpoint(typeof(IGridServer), binding, externalAddressTextBox.Text);
Note: See TracChangeset for help on using the changeset viewer.