Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/27/09 13:56:56 (15 years ago)
Author:
gkronber
Message:
  • fixed incorrect dependency
  • fixed problem with incompatible WCF binding (client vs. server)
  • fixed layout problem in HiveEngineEditor

#545 (Engine which can be executed in the Hive)

Location:
trunk/sources/HeuristicLab.Hive.Engine
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Hive.Engine/HeuristicLabHiveEnginePlugin.cs

    r1432 r1448  
    3232  [PluginFile(Filename = "HeuristicLab.Hive.Engine-3.2.dll", Filetype = PluginFileType.Assembly)]
    3333  [Dependency(Dependency = "HeuristicLab.Core-3.2")]
    34   [Dependency(Dependency = "HeuristicLab.Hive.JobBase")]
     34  [Dependency(Dependency = "HeuristicLab.Hive.JobBase-3.2")]
    3535  public class HeuristicLabHiveEnginePlugin : PluginBase {
    3636  }
  • trunk/sources/HeuristicLab.Hive.Engine/HiveEngineEditor.Designer.cs

    r1432 r1448  
    8686      // snapshotButton
    8787      //
     88      this.snapshotButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    8889      this.snapshotButton.Location = new System.Drawing.Point(294, 457);
    8990      this.snapshotButton.Name = "snapshotButton";
     
    9596      // urlTextBox
    9697      //
     98      this.urlTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    9799      this.urlTextBox.Location = new System.Drawing.Point(526, 459);
    98100      this.urlTextBox.Name = "urlTextBox";
     
    102104      // urlLabel
    103105      //
     106      this.urlLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
    104107      this.urlLabel.AutoSize = true;
    105108      this.urlLabel.Location = new System.Drawing.Point(523, 444);
     
    118121      this.Name = "HiveEngineEditor";
    119122      this.Size = new System.Drawing.Size(827, 480);
    120       this.Controls.SetChildIndex(this.urlLabel, 0);
    121       this.Controls.SetChildIndex(this.urlTextBox, 0);
    122       this.Controls.SetChildIndex(this.snapshotButton, 0);
    123123      this.Controls.SetChildIndex(this.executeButton, 0);
    124124      this.Controls.SetChildIndex(this.abortButton, 0);
     
    127127      this.Controls.SetChildIndex(this.executionTimeLabel, 0);
    128128      this.Controls.SetChildIndex(this.executionTimeTextBox, 0);
     129      this.Controls.SetChildIndex(this.urlLabel, 0);
     130      this.Controls.SetChildIndex(this.urlTextBox, 0);
     131      this.Controls.SetChildIndex(this.snapshotButton, 0);
    129132      this.splitContainer1.Panel1.ResumeLayout(false);
    130133      this.splitContainer1.Panel2.ResumeLayout(false);
  • trunk/sources/HeuristicLab.Hive.Engine/ServiceLocator.cs

    r1440 r1448  
    3131    internal static IExecutionEngineFacade CreateExecutionEngineFacade(string url) {
    3232      NetTcpBinding binding =
    33            new NetTcpBinding();
    34 
    35       binding.MaxReceivedMessageSize = 5000000;
     33           new NetTcpBinding(SecurityMode.None, true);
    3634
    3735      ChannelFactory<IExecutionEngineFacade> factory =
Note: See TracChangeset for help on using the changeset viewer.