Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/26/08 18:45:10 (16 years ago)
Author:
gkronber
Message:
  • fixed #31 by setting securityMode=None in the binding of client, server and distributed-engine
  • updated version number of Grid and DistributedEngine because new plugins had to be released
File:
1 edited

Legend:

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

    r2 r24  
    5656        binding.ReaderQuotas.MaxStringContentLength = 100000000; // also 100M chars
    5757        binding.ReaderQuotas.MaxArrayLength = 100000000; // also 100M elements;
     58        binding.Security.Mode = SecurityMode.None;       
    5859        factory = new ChannelFactory<IEngineStore>(binding);
    5960        engineStore = factory.CreateChannel(new EndpointAddress(addressTextBox.Text));
Note: See TracChangeset for help on using the changeset viewer.