- Timestamp:
- 02/26/08 18:45:10 (17 years ago)
- Location:
- trunk/sources
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.DistributedEngine/DistributedEngine.cs
r2 r24 71 71 binding.ReaderQuotas.MaxStringContentLength = 100000000; // also 100M chars 72 72 binding.ReaderQuotas.MaxArrayLength = 100000000; // also 100M elements; 73 binding.Security.Mode = SecurityMode.None; 73 74 ChannelFactory<IGridServer> factory = new ChannelFactory<IGridServer>(binding); 74 75 server = factory.CreateChannel(new EndpointAddress(serverAddress)); -
trunk/sources/HeuristicLab.DistributedEngine/Properties/AssemblyInfo.cs
r7 r24 54 54 // by using the '*' as shown below: 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 [assembly: AssemblyVersion("3.0.0. 0")]57 [assembly: AssemblyFileVersion("3.0.0. 0")]56 [assembly: AssemblyVersion("3.0.0.1")] 57 [assembly: AssemblyFileVersion("3.0.0.1")] -
trunk/sources/HeuristicLab.Grid/ClientForm.cs
r2 r24 56 56 binding.ReaderQuotas.MaxStringContentLength = 100000000; // also 100M chars 57 57 binding.ReaderQuotas.MaxArrayLength = 100000000; // also 100M elements; 58 binding.Security.Mode = SecurityMode.None; 58 59 factory = new ChannelFactory<IEngineStore>(binding); 59 60 engineStore = factory.CreateChannel(new EndpointAddress(addressTextBox.Text)); -
trunk/sources/HeuristicLab.Grid/Properties/AssemblyInfo.cs
r7 r24 54 54 // by using the '*' as shown below: 55 55 // [assembly: AssemblyVersion("1.0.*")] 56 [assembly: AssemblyVersion("3.0.0. 0")]57 [assembly: AssemblyFileVersion("3.0.0. 0")]56 [assembly: AssemblyVersion("3.0.0.1")] 57 [assembly: AssemblyFileVersion("3.0.0.1")] -
trunk/sources/HeuristicLab.Grid/ServerForm.cs
r2 r24 58 58 binding.ReaderQuotas.MaxStringContentLength = 100000000; // also 100M chars 59 59 binding.ReaderQuotas.MaxArrayLength = 100000000; // also 100M elements; 60 binding.Security.Mode = SecurityMode.None; 60 61 61 62 externalHost.AddServiceEndpoint(typeof(IGridServer), binding, externalAddressTextBox.Text);
Note: See TracChangeset
for help on using the changeset viewer.