Changeset 4422
- Timestamp:
- 09/17/10 05:41:23 (14 years ago)
- 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 47 47 this.tabControl = new System.Windows.Forms.TabControl(); 48 48 this.algorithmClassesTabPage = new System.Windows.Forms.TabPage(); 49 this.refreshAlgorithmClassesButton = new System.Windows.Forms.Button(); 49 50 this.algorithmsTabPage = new System.Windows.Forms.TabPage(); 50 51 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(); 52 54 this.tabControl.SuspendLayout(); 53 55 this.algorithmClassesTabPage.SuspendLayout(); … … 70 72 // algorithmClassesTabPage 71 73 // 74 this.algorithmClassesTabPage.Controls.Add(this.algorithmClassCollectionView); 72 75 this.algorithmClassesTabPage.Controls.Add(this.refreshAlgorithmClassesButton); 73 76 this.algorithmClassesTabPage.Location = new System.Drawing.Point(4, 22); … … 79 82 this.algorithmClassesTabPage.UseVisualStyleBackColor = true; 80 83 // 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 // 81 95 // algorithmsTabPage 82 96 // 97 this.algorithmsTabPage.Controls.Add(this.algorithmCollectionView); 83 98 this.algorithmsTabPage.Controls.Add(this.refreshAlgorithmsButton); 84 99 this.algorithmsTabPage.Location = new System.Drawing.Point(4, 22); … … 101 116 this.refreshAlgorithmsButton.Click += new System.EventHandler(this.refreshAlgorithmsButton_Click); 102 117 // 103 // refreshAlgorithmClassesButton118 // algorithmClassCollectionView 104 119 // 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; 113 143 // 114 144 // AdministrationView … … 133 163 private System.Windows.Forms.Button refreshAlgorithmsButton; 134 164 private System.Windows.Forms.Button refreshAlgorithmClassesButton; 165 private AlgorithmClassCollectionView algorithmClassCollectionView; 166 private AlgorithmCollectionView algorithmCollectionView; 135 167 136 168 } -
branches/OKB/HeuristicLab.Clients.OKB-3.3/AdministrationView.cs
r4421 r4422 36 36 using (AdminServiceClient adminService = ClientFactory.CreateClient<AdminServiceClient, IAdminService>()) { 37 37 try { 38 algorithmClassCollectionView.Content = adminService.GetAlgorithmClasses(); 38 39 } 39 40 catch (Exception ex) { … … 46 47 using (AdminServiceClient adminService = ClientFactory.CreateClient<AdminServiceClient, IAdminService>()) { 47 48 try { 49 algorithmCollectionView.Content = adminService.GetAlgorithms(); 48 50 } 49 51 catch (Exception ex) { -
branches/OKB/HeuristicLab.Clients.OKB-3.3/GenerateServiceClients.cmd
r4421 r4422 8 8 /reference:"C:\Program Files\HeuristicLab 3.3\HeuristicLab.Core-3.3.dll" ^ 9 9 /collectionType:HeuristicLab.Core.ItemCollection`1 ^ 10 /mergeConfig ^11 10 /config:app.config -
branches/OKB/HeuristicLab.Clients.OKB-3.3/HeuristicLab.Clients.OKB-3.3.csproj
r4421 r4422 72 72 <ItemGroup> 73 73 <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> 74 80 <Compile Include="Extensions.cs" /> 75 81 <Compile Include="HeuristicLabClientsOKBPlugin.cs" /> … … 80 86 <DependentUpon>AdministrationView.cs</DependentUpon> 81 87 </Compile> 88 <Compile Include="OKBItem.cs" /> 82 89 <Compile Include="NamedEntityView.cs"> 83 90 <SubType>UserControl</SubType> … … 85 92 <Compile Include="NamedEntityView.Designer.cs"> 86 93 <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> 87 100 </Compile> 88 101 <Compile Include="Properties\AssemblyInfo.cs" /> … … 96 109 <None Include="HeuristicLab.snk" /> 97 110 <None Include="HeuristicLabClientsOKBPlugin.cs.frame" /> 98 </ItemGroup>99 <ItemGroup>100 <EmbeddedResource Include="AdministrationView.resx">101 <DependentUpon>AdministrationView.cs</DependentUpon>102 </EmbeddedResource>103 111 </ItemGroup> 104 112 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/OKB/HeuristicLab.Clients.OKB-3.3/ServiceClients.cs
r4421 r4422 10 10 11 11 namespace HeuristicLab.Clients.OKB { 12 using HeuristicLab.Core;13 12 14 13 … … 16 15 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 17 16 [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 { 19 18 20 19 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 102 101 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 103 102 [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 { 105 104 106 105 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 308 307 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 309 308 [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 { 311 310 312 311 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 379 378 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 380 379 [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 { 382 381 383 382 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 495 494 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 496 495 [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 { 498 497 499 498 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 761 760 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 762 761 [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 { 764 763 765 764 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 982 981 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 983 982 [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 { 985 984 986 985 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 1068 1067 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 1069 1068 [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 { 1071 1070 1072 1071 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 1289 1288 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 1290 1289 [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 { 1292 1291 1293 1292 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 1495 1494 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 1496 1495 [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 { 1498 1497 1499 1498 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 1731 1730 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 1732 1731 [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 { 1734 1733 1735 1734 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 1862 1861 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 1863 1862 [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 { 1865 1864 1866 1865 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 1993 1992 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 1994 1993 [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 { 1996 1995 1997 1996 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 2124 2123 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 2125 2124 [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 { 2127 2126 2128 2127 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 2255 2254 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 2256 2255 [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 { 2258 2257 2259 2258 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 2386 2385 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 2387 2386 [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 { 2389 2388 2390 2389 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 2517 2516 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 2518 2517 [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 { 2520 2519 2521 2520 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 2648 2647 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 2649 2648 [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 { 2651 2650 2652 2651 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 2779 2778 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 2780 2779 [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 { 2782 2781 2783 2782 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 2910 2909 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 2911 2910 [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 { 2913 2912 2914 2913 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 3041 3040 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 3042 3041 [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 { 3044 3043 3045 3044 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 3142 3141 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 3143 3142 [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 { 3145 3144 3146 3145 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 3213 3212 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 3214 3213 [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 { 3216 3215 3217 3216 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 3344 3343 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 3345 3344 [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 { 3347 3346 3348 3347 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 3475 3474 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 3476 3475 [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 { 3478 3477 3479 3478 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 3606 3605 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 3607 3606 [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 { 3609 3608 3610 3609 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 3737 3736 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 3738 3737 [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 { 3740 3739 3741 3740 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 3868 3867 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 3869 3868 [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 { 3871 3870 3872 3871 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 3909 3908 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 3910 3909 [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 { 3912 3911 3913 3912 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 4280 4279 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 4281 4280 [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 { 4283 4282 4284 4283 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 4501 4500 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 4502 4501 [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 { 4504 4503 4505 4504 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 4572 4571 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 4573 4572 [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 { 4575 4574 4576 4575 private System.Runtime.Serialization.ExtensionDataObject extensionDataField; … … 4658 4657 [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] 4659 4658 [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 { 4661 4660 4662 4661 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"?> 2 2 <configuration> 3 3 <system.serviceModel> 4 4 <bindings> 5 5 <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" 177 7 openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" 178 8 bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" … … 195 25 <client> 196 26 <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"> 277 29 <identity> 278 30 <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.