Free cookie consent management tool by TermsFeed Policy Generator

Changeset 4422 for branches/OKB


Ignore:
Timestamp:
09/17/10 05:41:23 (14 years ago)
Author:
swagner
Message:

Worked on OKB data model and services (#1174)

Location:
branches/OKB/HeuristicLab.Clients.OKB-3.3
Files:
5 added
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/AdministrationView.Designer.cs

    r4421 r4422  
    4747      this.tabControl = new System.Windows.Forms.TabControl();
    4848      this.algorithmClassesTabPage = new System.Windows.Forms.TabPage();
     49      this.refreshAlgorithmClassesButton = new System.Windows.Forms.Button();
    4950      this.algorithmsTabPage = new System.Windows.Forms.TabPage();
    5051      this.refreshAlgorithmsButton = new System.Windows.Forms.Button();
    51       this.refreshAlgorithmClassesButton = new System.Windows.Forms.Button();
     52      this.algorithmClassCollectionView = new HeuristicLab.Clients.OKB.AlgorithmClassCollectionView();
     53      this.algorithmCollectionView = new HeuristicLab.Clients.OKB.AlgorithmCollectionView();
    5254      this.tabControl.SuspendLayout();
    5355      this.algorithmClassesTabPage.SuspendLayout();
     
    7072      // algorithmClassesTabPage
    7173      //
     74      this.algorithmClassesTabPage.Controls.Add(this.algorithmClassCollectionView);
    7275      this.algorithmClassesTabPage.Controls.Add(this.refreshAlgorithmClassesButton);
    7376      this.algorithmClassesTabPage.Location = new System.Drawing.Point(4, 22);
     
    7982      this.algorithmClassesTabPage.UseVisualStyleBackColor = true;
    8083      //
     84      // refreshAlgorithmClassesButton
     85      //
     86      this.refreshAlgorithmClassesButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     87      this.refreshAlgorithmClassesButton.Location = new System.Drawing.Point(6, 380);
     88      this.refreshAlgorithmClassesButton.Name = "refreshAlgorithmClassesButton";
     89      this.refreshAlgorithmClassesButton.Size = new System.Drawing.Size(75, 23);
     90      this.refreshAlgorithmClassesButton.TabIndex = 2;
     91      this.refreshAlgorithmClassesButton.Text = "&Refresh";
     92      this.refreshAlgorithmClassesButton.UseVisualStyleBackColor = true;
     93      this.refreshAlgorithmClassesButton.Click += new System.EventHandler(this.refreshAlgorithmClassesButton_Click);
     94      //
    8195      // algorithmsTabPage
    8296      //
     97      this.algorithmsTabPage.Controls.Add(this.algorithmCollectionView);
    8398      this.algorithmsTabPage.Controls.Add(this.refreshAlgorithmsButton);
    8499      this.algorithmsTabPage.Location = new System.Drawing.Point(4, 22);
     
    101116      this.refreshAlgorithmsButton.Click += new System.EventHandler(this.refreshAlgorithmsButton_Click);
    102117      //
    103       // refreshAlgorithmClassesButton
     118      // algorithmClassCollectionView
    104119      //
    105       this.refreshAlgorithmClassesButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
    106       this.refreshAlgorithmClassesButton.Location = new System.Drawing.Point(6, 380);
    107       this.refreshAlgorithmClassesButton.Name = "refreshAlgorithmClassesButton";
    108       this.refreshAlgorithmClassesButton.Size = new System.Drawing.Size(75, 23);
    109       this.refreshAlgorithmClassesButton.TabIndex = 2;
    110       this.refreshAlgorithmClassesButton.Text = "&Refresh";
    111       this.refreshAlgorithmClassesButton.UseVisualStyleBackColor = true;
    112       this.refreshAlgorithmClassesButton.Click += new System.EventHandler(this.refreshAlgorithmClassesButton_Click);
     120      this.algorithmClassCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     121                  | System.Windows.Forms.AnchorStyles.Left)
     122                  | System.Windows.Forms.AnchorStyles.Right)));
     123      this.algorithmClassCollectionView.Caption = "AlgorithmClassCollection View";
     124      this.algorithmClassCollectionView.Content = null;
     125      this.algorithmClassCollectionView.Location = new System.Drawing.Point(6, 6);
     126      this.algorithmClassCollectionView.Name = "algorithmClassCollectionView";
     127      this.algorithmClassCollectionView.ReadOnly = false;
     128      this.algorithmClassCollectionView.Size = new System.Drawing.Size(707, 368);
     129      this.algorithmClassCollectionView.TabIndex = 3;
     130      //
     131      // algorithmCollectionView
     132      //
     133      this.algorithmCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     134                  | System.Windows.Forms.AnchorStyles.Left)
     135                  | System.Windows.Forms.AnchorStyles.Right)));
     136      this.algorithmCollectionView.Caption = "AlgorithmCollection View";
     137      this.algorithmCollectionView.Content = null;
     138      this.algorithmCollectionView.Location = new System.Drawing.Point(6, 6);
     139      this.algorithmCollectionView.Name = "algorithmCollectionView";
     140      this.algorithmCollectionView.ReadOnly = false;
     141      this.algorithmCollectionView.Size = new System.Drawing.Size(707, 368);
     142      this.algorithmCollectionView.TabIndex = 2;
    113143      //
    114144      // AdministrationView
     
    133163    private System.Windows.Forms.Button refreshAlgorithmsButton;
    134164    private System.Windows.Forms.Button refreshAlgorithmClassesButton;
     165    private AlgorithmClassCollectionView algorithmClassCollectionView;
     166    private AlgorithmCollectionView algorithmCollectionView;
    135167
    136168  }
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/AdministrationView.cs

    r4421 r4422  
    3636      using (AdminServiceClient adminService = ClientFactory.CreateClient<AdminServiceClient, IAdminService>()) {
    3737        try {
     38          algorithmClassCollectionView.Content = adminService.GetAlgorithmClasses();
    3839        }
    3940        catch (Exception ex) {
     
    4647      using (AdminServiceClient adminService = ClientFactory.CreateClient<AdminServiceClient, IAdminService>()) {
    4748        try {
     49          algorithmCollectionView.Content = adminService.GetAlgorithms();
    4850        }
    4951        catch (Exception ex) {
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/GenerateServiceClients.cmd

    r4421 r4422  
    88  /reference:"C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll" ^
    99  /collectionType:HeuristicLab.Core.ItemCollection`1 ^
    10   /mergeConfig ^
    1110  /config:app.config
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/HeuristicLab.Clients.OKB-3.3.csproj

    r4421 r4422  
    7272  <ItemGroup>
    7373    <Compile Include="AdministrationMenuItem.cs" />
     74    <Compile Include="AlgorithmCollectionView.cs">
     75      <SubType>UserControl</SubType>
     76    </Compile>
     77    <Compile Include="AlgorithmCollectionView.Designer.cs">
     78      <DependentUpon>AlgorithmCollectionView.cs</DependentUpon>
     79    </Compile>
    7480    <Compile Include="Extensions.cs" />
    7581    <Compile Include="HeuristicLabClientsOKBPlugin.cs" />
     
    8086      <DependentUpon>AdministrationView.cs</DependentUpon>
    8187    </Compile>
     88    <Compile Include="OKBItem.cs" />
    8289    <Compile Include="NamedEntityView.cs">
    8390      <SubType>UserControl</SubType>
     
    8592    <Compile Include="NamedEntityView.Designer.cs">
    8693      <DependentUpon>NamedEntityView.cs</DependentUpon>
     94    </Compile>
     95    <Compile Include="AlgorithmClassCollectionView.cs">
     96      <SubType>UserControl</SubType>
     97    </Compile>
     98    <Compile Include="AlgorithmClassCollectionView.Designer.cs">
     99      <DependentUpon>AlgorithmClassCollectionView.cs</DependentUpon>
    87100    </Compile>
    88101    <Compile Include="Properties\AssemblyInfo.cs" />
     
    96109    <None Include="HeuristicLab.snk" />
    97110    <None Include="HeuristicLabClientsOKBPlugin.cs.frame" />
    98   </ItemGroup>
    99   <ItemGroup>
    100     <EmbeddedResource Include="AdministrationView.resx">
    101       <DependentUpon>AdministrationView.cs</DependentUpon>
    102     </EmbeddedResource>
    103111  </ItemGroup>
    104112  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients.cs

    r4421 r4422  
    1010
    1111namespace HeuristicLab.Clients.OKB {
    12   using HeuristicLab.Core;
    1312
    1413
     
    1615  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    1716  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmClass", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    18   public partial class AlgorithmClass : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     17  public partial class AlgorithmClass : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    1918
    2019    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    102101  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    103102  [System.Runtime.Serialization.DataContractAttribute(Name = "Algorithm", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    104   public partial class Algorithm : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     103  public partial class Algorithm : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    105104
    106105    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    308307  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    309308  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmData", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    310   public partial class AlgorithmData : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     309  public partial class AlgorithmData : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    311310
    312311    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    379378  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    380379  [System.Runtime.Serialization.DataContractAttribute(Name = "Platform", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    381   public partial class Platform : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     380  public partial class Platform : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    382381
    383382    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    495494  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    496495  [System.Runtime.Serialization.DataContractAttribute(Name = "Experiment", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    497   public partial class Experiment : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     496  public partial class Experiment : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    498497
    499498    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    761760  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    762761  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmParameter", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    763   public partial class AlgorithmParameter : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     762  public partial class AlgorithmParameter : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    764763
    765764    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    982981  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    983982  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmUser", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    984   public partial class AlgorithmUser : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     983  public partial class AlgorithmUser : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    985984
    986985    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    10681067  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    10691068  [System.Runtime.Serialization.DataContractAttribute(Name = "Result", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    1070   public partial class Result : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     1069  public partial class Result : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    10711070
    10721071    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    12891288  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    12901289  [System.Runtime.Serialization.DataContractAttribute(Name = "Problem", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    1291   public partial class Problem : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     1290  public partial class Problem : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    12921291
    12931292    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    14951494  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    14961495  [System.Runtime.Serialization.DataContractAttribute(Name = "Run", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    1497   public partial class Run : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     1496  public partial class Run : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    14981497
    14991498    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    17311730  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    17321731  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmParameterBlobValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    1733   public partial class AlgorithmParameterBlobValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     1732  public partial class AlgorithmParameterBlobValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    17341733
    17351734    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    18621861  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    18631862  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmParameterBoolValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    1864   public partial class AlgorithmParameterBoolValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     1863  public partial class AlgorithmParameterBoolValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    18651864
    18661865    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    19931992  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    19941993  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmParameterFloatValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    1995   public partial class AlgorithmParameterFloatValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     1994  public partial class AlgorithmParameterFloatValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    19961995
    19971996    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    21242123  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    21252124  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmParameterIntValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    2126   public partial class AlgorithmParameterIntValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     2125  public partial class AlgorithmParameterIntValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    21272126
    21282127    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    22552254  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    22562255  [System.Runtime.Serialization.DataContractAttribute(Name = "AlgorithmParameterStringValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    2257   public partial class AlgorithmParameterStringValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     2256  public partial class AlgorithmParameterStringValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    22582257
    22592258    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    23862385  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    23872386  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemParameterBlobValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    2388   public partial class ProblemParameterBlobValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     2387  public partial class ProblemParameterBlobValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    23892388
    23902389    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    25172516  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    25182517  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemParameterBoolValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    2519   public partial class ProblemParameterBoolValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     2518  public partial class ProblemParameterBoolValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    25202519
    25212520    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    26482647  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    26492648  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemParameterFloatValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    2650   public partial class ProblemParameterFloatValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     2649  public partial class ProblemParameterFloatValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    26512650
    26522651    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    27792778  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    27802779  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemParameterIntValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    2781   public partial class ProblemParameterIntValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     2780  public partial class ProblemParameterIntValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    27822781
    27832782    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    29102909  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    29112910  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemParameterStringValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    2912   public partial class ProblemParameterStringValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     2911  public partial class ProblemParameterStringValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    29132912
    29142913    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    30413040  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    30423041  [System.Runtime.Serialization.DataContractAttribute(Name = "User", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    3043   public partial class User : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     3042  public partial class User : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    30443043
    30453044    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    31423141  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    31433142  [System.Runtime.Serialization.DataContractAttribute(Name = "Client", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    3144   public partial class Client : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     3143  public partial class Client : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    31453144
    31463145    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    32133212  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    32143213  [System.Runtime.Serialization.DataContractAttribute(Name = "ResultBlobValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    3215   public partial class ResultBlobValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     3214  public partial class ResultBlobValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    32163215
    32173216    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    33443343  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    33453344  [System.Runtime.Serialization.DataContractAttribute(Name = "ResultBoolValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    3346   public partial class ResultBoolValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     3345  public partial class ResultBoolValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    33473346
    33483347    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    34753474  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    34763475  [System.Runtime.Serialization.DataContractAttribute(Name = "ResultFloatValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    3477   public partial class ResultFloatValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     3476  public partial class ResultFloatValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    34783477
    34793478    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    36063605  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    36073606  [System.Runtime.Serialization.DataContractAttribute(Name = "ResultIntValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    3608   public partial class ResultIntValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     3607  public partial class ResultIntValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    36093608
    36103609    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    37373736  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    37383737  [System.Runtime.Serialization.DataContractAttribute(Name = "ResultStringValue", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    3739   public partial class ResultStringValue : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     3738  public partial class ResultStringValue : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    37403739
    37413740    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    38683867  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    38693868  [System.Runtime.Serialization.DataContractAttribute(Name = "Binary", Namespace = "http://schemas.datacontract.org/2004/07/System.Data.Linq")]
    3870   public partial class Binary : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     3869  public partial class Binary : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    38713870
    38723871    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    39093908  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    39103909  [System.Runtime.Serialization.DataContractAttribute(Name = "DataType", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    3911   public partial class DataType : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     3910  public partial class DataType : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    39123911
    39133912    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    42804279  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    42814280  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemParameter", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    4282   public partial class ProblemParameter : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     4281  public partial class ProblemParameter : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    42834282
    42844283    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    45014500  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    45024501  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemData", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    4503   public partial class ProblemData : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     4502  public partial class ProblemData : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    45044503
    45054504    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    45724571  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    45734572  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemClass", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    4574   public partial class ProblemClass : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     4573  public partial class ProblemClass : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    45754574
    45764575    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
     
    46584657  [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
    46594658  [System.Runtime.Serialization.DataContractAttribute(Name = "ProblemUser", Namespace = "http://schemas.datacontract.org/2004/07/HeuristicLab.Services.OKB.DataAccess", IsReference = true)]
    4660   public partial class ProblemUser : Item, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
     4659  public partial class ProblemUser : OKBItem, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
    46614660
    46624661    private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  • branches/OKB/HeuristicLab.Clients.OKB-3.3/app.config

    r4421 r4422  
    1 <?xml version="1.0" encoding="utf-8" ?>
     1<?xml version="1.0" encoding="utf-8"?>
    22<configuration>
    33    <system.serviceModel>
    44        <bindings>
    55            <wsHttpBinding>
    6                 <binding name="WSHttpBinding_IAdminService1" closeTimeout="00:01:00"
    7                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    8                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    9                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    10                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    11                     allowCookies="false">
    12                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    13                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    14                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    15                         enabled="false" />
    16                     <security mode="Message">
    17                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    18                             realm="" />
    19                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    20                             algorithmSuite="Default" />
    21                     </security>
    22                 </binding>
    23                 <binding name="WSHttpBinding_IAdminService2" closeTimeout="00:01:00"
    24                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    25                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    26                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    27                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    28                     allowCookies="false">
    29                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    30                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    31                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    32                         enabled="false" />
    33                     <security mode="Message">
    34                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    35                             realm="" />
    36                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    37                             algorithmSuite="Default" />
    38                     </security>
    39                 </binding>
    40                 <binding name="WSHttpBinding_IAdminService3" closeTimeout="00:01:00"
    41                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    42                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    43                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    44                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    45                     allowCookies="false">
    46                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    47                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    48                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    49                         enabled="false" />
    50                     <security mode="Message">
    51                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    52                             realm="" />
    53                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    54                             algorithmSuite="Default" />
    55                     </security>
    56                 </binding>
    57                 <binding name="WSHttpBinding_IAdminService4" closeTimeout="00:01:00"
    58                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    59                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    60                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    61                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    62                     allowCookies="false">
    63                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    64                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    65                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    66                         enabled="false" />
    67                     <security mode="Message">
    68                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    69                             realm="" />
    70                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    71                             algorithmSuite="Default" />
    72                     </security>
    73                 </binding>
    74                 <binding name="WSHttpBinding_IAdminService5" closeTimeout="00:01:00"
    75                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    76                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    77                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    78                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    79                     allowCookies="false">
    80                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    81                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    82                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    83                         enabled="false" />
    84                     <security mode="Message">
    85                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    86                             realm="" />
    87                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    88                             algorithmSuite="Default" />
    89                     </security>
    90                 </binding>
    91                 <binding name="WSHttpBinding_IAdminService6" closeTimeout="00:01:00"
    92                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    93                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    94                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    95                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    96                     allowCookies="false">
    97                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    98                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    99                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    100                         enabled="false" />
    101                     <security mode="Message">
    102                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    103                             realm="" />
    104                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    105                             algorithmSuite="Default" />
    106                     </security>
    107                 </binding>
    108                 <binding name="WSHttpBinding_IAdminService7" closeTimeout="00:01:00"
    109                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    110                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    111                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    112                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    113                     allowCookies="false">
    114                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    115                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    116                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    117                         enabled="false" />
    118                     <security mode="Message">
    119                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    120                             realm="" />
    121                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    122                             algorithmSuite="Default" />
    123                     </security>
    124                 </binding>
    125                 <binding name="WSHttpBinding_IAdminService8" closeTimeout="00:01:00"
    126                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    127                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    128                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    129                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    130                     allowCookies="false">
    131                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    132                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    133                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    134                         enabled="false" />
    135                     <security mode="Message">
    136                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    137                             realm="" />
    138                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    139                             algorithmSuite="Default" />
    140                     </security>
    141                 </binding>
    142                 <binding name="WSHttpBinding_IAdminService9" closeTimeout="00:01:00"
    143                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    144                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    145                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    146                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    147                     allowCookies="false">
    148                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    149                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    150                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    151                         enabled="false" />
    152                     <security mode="Message">
    153                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    154                             realm="" />
    155                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    156                             algorithmSuite="Default" />
    157                     </security>
    158                 </binding>
    159                 <binding name="WSHttpBinding_IAdminService10" closeTimeout="00:01:00"
    160                     openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    161                     bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    162                     maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
    163                     messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
    164                     allowCookies="false">
    165                     <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
    166                         maxBytesPerRead="4096" maxNameTableCharCount="16384" />
    167                     <reliableSession ordered="true" inactivityTimeout="00:10:00"
    168                         enabled="false" />
    169                     <security mode="Message">
    170                         <transport clientCredentialType="Windows" proxyCredentialType="None"
    171                             realm="" />
    172                         <message clientCredentialType="UserName" negotiateServiceCredential="true"
    173                             algorithmSuite="Default" />
    174                     </security>
    175                 </binding>
    176                 <binding name="WSHttpBinding_IAdminService11" closeTimeout="00:01:00"
     6                <binding name="WSHttpBinding_IAdminService" closeTimeout="00:01:00"
    1777                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
    1788                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
     
    19525        <client>
    19626            <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    197                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService1"
    198                 contract="HeuristicLab.Clients.OKB.Services.IAdminService"
    199                 name="WSHttpBinding_IAdminService1">
    200                 <identity>
    201                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    202                 </identity>
    203             </endpoint>
    204             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    205                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService2"
    206                 contract="HeuristicLab.Clients.OKB.Services.IAdminService"
    207                 name="WSHttpBinding_IAdminService2">
    208                 <identity>
    209                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    210                 </identity>
    211             </endpoint>
    212             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    213                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService3"
    214                 contract="HeuristicLab.Clients.OKB.Services.IAdminService"
    215                 name="WSHttpBinding_IAdminService3">
    216                 <identity>
    217                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    218                 </identity>
    219             </endpoint>
    220             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    221                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService4"
    222                 contract="HeuristicLab.Clients.OKB.Services.IAdminService"
    223                 name="WSHttpBinding_IAdminService4">
    224                 <identity>
    225                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    226                 </identity>
    227             </endpoint>
    228             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    229                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService5"
    230                 contract="HeuristicLab.Clients.OKB.Services.IAdminService"
    231                 name="WSHttpBinding_IAdminService5">
    232                 <identity>
    233                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    234                 </identity>
    235             </endpoint>
    236             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    237                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService6"
    238                 contract="HeuristicLab.Clients.OKB.Services.IAdminService"
    239                 name="WSHttpBinding_IAdminService6">
    240                 <identity>
    241                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    242                 </identity>
    243             </endpoint>
    244             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    245                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService7"
    246                 contract="HeuristicLab.Clients.OKB.Services.IAdminService"
    247                 name="WSHttpBinding_IAdminService7">
    248                 <identity>
    249                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    250                 </identity>
    251             </endpoint>
    252             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    253                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService8"
    254                 contract="HeuristicLab.Clients.OKB.Services.IAdminService"
    255                 name="WSHttpBinding_IAdminService8">
    256                 <identity>
    257                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    258                 </identity>
    259             </endpoint>
    260             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    261                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService9"
    262                 contract="IAdminService" name="WSHttpBinding_IAdminService9">
    263                 <identity>
    264                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    265                 </identity>
    266             </endpoint>
    267             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    268                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService10"
    269                 contract="HeuristicLab.Clients.OKB.IAdminService" name="WSHttpBinding_IAdminService10">
    270                 <identity>
    271                     <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
    272                 </identity>
    273             </endpoint>
    274             <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService"
    275                 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService11"
    276                 contract="HeuristicLab.Clients.OKB.IAdminService" name="WSHttpBinding_IAdminService11">
     27                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService"
     28                contract="HeuristicLab.Clients.OKB.IAdminService" name="WSHttpBinding_IAdminService">
    27729                <identity>
    27830                    <certificate encodedValue="AwAAAAEAAAAUAAAAD/AlkYJw/OUhl6D/9w8mjJBh39kgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMDgyMDIyMzIwOFoXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDPkfCSLRX8/4F+Z4ys43yZ4MMzjB44cMakPz4Nri+mEB5n2z/0GFatCYzkI2f/nniWqVrBYjHkjsZy2EZioHu4wa99c1XEGJnFNDuNn6ESkfEyhyF4+OqKGnpK9HNrw7OWMuqn2oOh0iFd9fl6FTAm+Y0p3LP+38BuYzpCniqqdwIDAQABo0kwRzBFBgNVHQEEPjA8gBDvi8Rgio9v+mr58TiAvqF5oRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAdEzTisaf2sEZxrqYZfYtCMAkGBSsOAwIdBQADgYEANdGlvHKeUptfNu9I0wgA5qjmVB+JDldOAkrfM0R+4IcVQ06y5K7P07uxQAV7+rhnDLgLyFJunUHgzbfjsjFy7vjwtoieXA5j0AYlm4AHR7dHt4HVgkIMYt8XOCqMw5jjFX91xJ89tC7mM9zYR48N9T5QSeMGo+f+JzybeLWxnNs=" />
Note: See TracChangeset for help on using the changeset viewer.