Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/24/10 18:37:04 (14 years ago)
Author:
cneumuel
Message:

added streamedHttpEndpoit binding (without message-security (for now)) (#1168)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Experiment.Views/3.3/HiveExperimentView.cs

    r4170 r4305  
    2929using HeuristicLab.Optimization;
    3030using HeuristicLab.Optimization.Views;
     31using HeuristicLab.Hive.Experiment.Properties;
    3132
    3233namespace HeuristicLab.Hive.Experiment.Views {
     
    8283        executionTimeTextBox.Text = Content.ExecutionTime.ToString();
    8384        resourceIdsTextBox.Text = Content.ResourceIds;
    84         serverUrlTextBox.Text = Content.ServerUrl;
     85        serverIpTextBox.Text = Settings.Default.HiveServerIp;
    8586        experimentNamedItemView.Content = Content.Experiment;
    8687        logView.Content = Content.Log;
     
    193194
    194195    private void serverUrlTextBox_Validating(object sender, System.ComponentModel.CancelEventArgs e) {
    195       if (string.IsNullOrEmpty(serverUrlTextBox.Text)) {
     196      if (string.IsNullOrEmpty(serverIpTextBox.Text)) {
    196197        e.Cancel = true;
    197         errorProvider.SetError(serverUrlTextBox, "ServerUrl cannot be empty");
    198         serverUrlTextBox.SelectAll();
     198        errorProvider.SetError(serverIpTextBox, "ServerUrl cannot be empty");
     199        serverIpTextBox.SelectAll();
    199200        return;
    200201      }
    201       Content.ServerUrl = serverUrlTextBox.Text;
     202      Settings.Default.HiveServerIp = serverIpTextBox.Text;
    202203    }
    203204
    204205    private void serverUrlTextBox_Validated(object sender, EventArgs e) {
    205       errorProvider.SetError(serverUrlTextBox, string.Empty);
     206      errorProvider.SetError(serverIpTextBox, string.Empty);
    206207    }
    207208
Note: See TracChangeset for help on using the changeset viewer.