Changeset 4421
- Timestamp:
- 09/17/10 04:25:22 (14 years ago)
- Location:
- branches/OKB/HeuristicLab.Clients.OKB-3.3
- Files:
-
- 2 added
- 11 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/OKB/HeuristicLab.Clients.OKB-3.3/AdministrationView.Designer.cs
r4408 r4421 49 49 this.algorithmsTabPage = new System.Windows.Forms.TabPage(); 50 50 this.refreshAlgorithmsButton = new System.Windows.Forms.Button(); 51 this.algorithmCollectionView = new HeuristicLab.Clients.OKB.AlgorithmCollectionView();52 this.algorithmClassCollectionView = new HeuristicLab.Clients.OKB.AlgorithmClassCollectionView();53 51 this.refreshAlgorithmClassesButton = new System.Windows.Forms.Button(); 54 52 this.tabControl.SuspendLayout(); … … 73 71 // 74 72 this.algorithmClassesTabPage.Controls.Add(this.refreshAlgorithmClassesButton); 75 this.algorithmClassesTabPage.Controls.Add(this.algorithmClassCollectionView);76 73 this.algorithmClassesTabPage.Location = new System.Drawing.Point(4, 22); 77 74 this.algorithmClassesTabPage.Name = "algorithmClassesTabPage"; … … 85 82 // 86 83 this.algorithmsTabPage.Controls.Add(this.refreshAlgorithmsButton); 87 this.algorithmsTabPage.Controls.Add(this.algorithmCollectionView);88 84 this.algorithmsTabPage.Location = new System.Drawing.Point(4, 22); 89 85 this.algorithmsTabPage.Name = "algorithmsTabPage"; … … 104 100 this.refreshAlgorithmsButton.UseVisualStyleBackColor = true; 105 101 this.refreshAlgorithmsButton.Click += new System.EventHandler(this.refreshAlgorithmsButton_Click); 106 //107 // algorithmCollectionView108 //109 this.algorithmCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)110 | System.Windows.Forms.AnchorStyles.Left)111 | System.Windows.Forms.AnchorStyles.Right)));112 this.algorithmCollectionView.Caption = "AlgorithmCollection View";113 this.algorithmCollectionView.Content = null;114 this.algorithmCollectionView.Location = new System.Drawing.Point(6, 6);115 this.algorithmCollectionView.Name = "algorithmCollectionView";116 this.algorithmCollectionView.ReadOnly = false;117 this.algorithmCollectionView.Size = new System.Drawing.Size(707, 368);118 this.algorithmCollectionView.TabIndex = 0;119 //120 // algorithmClassCollectionView121 //122 this.algorithmClassCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)123 | System.Windows.Forms.AnchorStyles.Left)124 | System.Windows.Forms.AnchorStyles.Right)));125 this.algorithmClassCollectionView.Caption = "AlgorithmClassCollection View";126 this.algorithmClassCollectionView.Content = null;127 this.algorithmClassCollectionView.Location = new System.Drawing.Point(6, 6);128 this.algorithmClassCollectionView.Name = "algorithmClassCollectionView";129 this.algorithmClassCollectionView.ReadOnly = false;130 this.algorithmClassCollectionView.Size = new System.Drawing.Size(707, 368);131 this.algorithmClassCollectionView.TabIndex = 0;132 102 // 133 103 // refreshAlgorithmClassesButton … … 162 132 private System.Windows.Forms.TabPage algorithmsTabPage; 163 133 private System.Windows.Forms.Button refreshAlgorithmsButton; 164 private AlgorithmCollectionView algorithmCollectionView;165 134 private System.Windows.Forms.Button refreshAlgorithmClassesButton; 166 private AlgorithmClassCollectionView algorithmClassCollectionView;167 135 168 136 } -
branches/OKB/HeuristicLab.Clients.OKB-3.3/AdministrationView.cs
r4408 r4421 23 23 using System.Windows.Forms; 24 24 using HeuristicLab.Clients.Common; 25 using HeuristicLab.Clients.OKB.AdminService;26 25 using HeuristicLab.MainForm; 27 26 using HeuristicLab.PluginInfrastructure; … … 37 36 using (AdminServiceClient adminService = ClientFactory.CreateClient<AdminServiceClient, IAdminService>()) { 38 37 try { 39 algorithmClassCollectionView.Content = new EntityCollection<AlgorithmClass>(adminService.GetAlgorithmClasses());40 38 } 41 39 catch (Exception ex) { … … 48 46 using (AdminServiceClient adminService = ClientFactory.CreateClient<AdminServiceClient, IAdminService>()) { 49 47 try { 50 algorithmCollectionView.Content = new EntityCollection<Algorithm>(adminService.GetAlgorithms());51 48 } 52 49 catch (Exception ex) { -
branches/OKB/HeuristicLab.Clients.OKB-3.3/Extensions.cs
r4408 r4421 20 20 #endregion 21 21 22 using System;23 22 using System.ComponentModel; 24 using System.Drawing; 25 using HeuristicLab.Collections; 26 using HeuristicLab.Common; 23 using HeuristicLab.Core; 27 24 28 namespace HeuristicLab.Clients.OKB.AdminService { 29 public interface IEntity : IContent, INotifyPropertyChanged { 30 Image EntityImage { get; } 31 32 event EventHandler EntityImageChanged; 33 event EventHandler ToStringChanged; 34 } 35 36 public interface INamedEntity : IEntity { 25 namespace HeuristicLab.Clients.OKB { 26 public interface INamedEntity : IItem, INotifyPropertyChanged { 37 27 string Name { get; set; } 38 28 string Description { get; set; } 39 29 } 40 30 41 public interface IEntityCollection<T> : IObservableCollection<T>, IEntity where T : class, IEntity { } 42 43 public partial class AlgorithmClass : INamedEntity { 44 public Image EntityImage { 45 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; } 46 } 47 48 public event EventHandler EntityImageChanged; 49 protected virtual void OnEntityImageChanged() { 50 EventHandler handler = EntityImageChanged; 51 if (handler != null) handler(this, EventArgs.Empty); 52 } 53 public event EventHandler ToStringChanged; 54 protected virtual void OnToStringChanged() { 55 EventHandler handler = ToStringChanged; 56 if (handler != null) handler(this, EventArgs.Empty); 57 } 31 [Item("AlgorithmClass", "An OKB algorithm class.")] 32 public sealed partial class AlgorithmClass : INamedEntity { 58 33 } 59 34 public partial class Algorithm : INamedEntity { 60 public Image EntityImage {61 get { return HeuristicLab.Common.Resources.VS2008ImageLibrary.Class; }62 }63 64 public event EventHandler EntityImageChanged;65 protected virtual void OnEntityImageChanged() {66 EventHandler handler = EntityImageChanged;67 if (handler != null) handler(this, EventArgs.Empty);68 }69 public event EventHandler ToStringChanged;70 protected virtual void OnToStringChanged() {71 EventHandler handler = ToStringChanged;72 if (handler != null) handler(this, EventArgs.Empty);73 }74 35 } 75 36 } -
branches/OKB/HeuristicLab.Clients.OKB-3.3/HeuristicLab.Clients.OKB-3.3.csproj
r4408 r4421 45 45 <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" /> 46 46 <Reference Include="HeuristicLab.Common.Resources-3.3, Version=3.2.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" /> 47 <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" /> 47 48 <Reference Include="HeuristicLab.Core.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" /> 48 49 <Reference Include="HeuristicLab.MainForm-3.3"> … … 71 72 <ItemGroup> 72 73 <Compile Include="AdministrationMenuItem.cs" /> 73 <Compile Include="AlgorithmCollectionView.cs">74 <SubType>UserControl</SubType>75 </Compile>76 <Compile Include="AlgorithmCollectionView.Designer.cs">77 <DependentUpon>AlgorithmCollectionView.cs</DependentUpon>78 </Compile>79 74 <Compile Include="Extensions.cs" /> 80 75 <Compile Include="HeuristicLabClientsOKBPlugin.cs" /> … … 85 80 <DependentUpon>AdministrationView.cs</DependentUpon> 86 81 </Compile> 87 <Compile Include="EntityCollection.cs" />88 <Compile Include="EntityCollectionView.cs">89 <SubType>UserControl</SubType>90 </Compile>91 <Compile Include="EntityCollectionView.Designer.cs">92 <DependentUpon>EntityCollectionView.cs</DependentUpon>93 </Compile>94 <Compile Include="EntityView.cs">95 <SubType>UserControl</SubType>96 </Compile>97 <Compile Include="EntityView.Designer.cs">98 <DependentUpon>EntityView.cs</DependentUpon>99 </Compile>100 82 <Compile Include="NamedEntityView.cs"> 101 83 <SubType>UserControl</SubType> … … 104 86 <DependentUpon>NamedEntityView.cs</DependentUpon> 105 87 </Compile> 106 <Compile Include="AlgorithmClassCollectionView.cs">107 <SubType>UserControl</SubType>108 </Compile>109 <Compile Include="AlgorithmClassCollectionView.Designer.cs">110 <DependentUpon>AlgorithmClassCollectionView.cs</DependentUpon>111 </Compile>112 88 <Compile Include="Properties\AssemblyInfo.cs" /> 113 <Compile Include="ReadOnlyEntityCollection.cs" /> 114 <Compile Include="Service References\AdminService\Reference.cs"> 115 <AutoGen>True</AutoGen> 116 <DesignTime>True</DesignTime> 117 <DependentUpon>Reference.svcmap</DependentUpon> 118 </Compile> 89 <Compile Include="ServiceClients.cs" /> 119 90 <None Include="app.config" /> 91 <None Include="GenerateServiceClients.cmd" /> 120 92 <None Include="Properties\AssemblyInfo.frame" /> 121 <None Include="Service References\AdminService\HeuristicLab.Clients.OKB.AdminService.Algorithm.datasource">122 <DependentUpon>Reference.svcmap</DependentUpon>123 </None>124 <None Include="Service References\AdminService\HeuristicLab.Clients.OKB.AdminService.AlgorithmClass.datasource">125 <DependentUpon>Reference.svcmap</DependentUpon>126 </None>127 <None Include="Service References\AdminService\HeuristicLab.Clients.OKB.AdminService.Platform.datasource">128 <DependentUpon>Reference.svcmap</DependentUpon>129 </None>130 <None Include="Service References\AdminService\HeuristicLab.Clients.OKB.AdminService.Problem.datasource">131 <DependentUpon>Reference.svcmap</DependentUpon>132 </None>133 <None Include="Service References\AdminService\HeuristicLab.Services.OKB.DataAccess.xsd">134 <SubType>Designer</SubType>135 </None>136 <None Include="Service References\AdminService\service.wsdl" />137 <None Include="Service References\AdminService\service.xsd">138 <SubType>Designer</SubType>139 </None>140 <None Include="Service References\AdminService\service1.xsd">141 <SubType>Designer</SubType>142 </None>143 <None Include="Service References\AdminService\System.Data.Linq.xsd">144 <SubType>Designer</SubType>145 </None>146 93 <None Include="UpdateLocalInstallation.cmd" /> 147 94 </ItemGroup> … … 151 98 </ItemGroup> 152 99 <ItemGroup> 153 <WCFMetadata Include="Service References\" />154 </ItemGroup>155 <ItemGroup>156 100 <EmbeddedResource Include="AdministrationView.resx"> 157 101 <DependentUpon>AdministrationView.cs</DependentUpon> 158 102 </EmbeddedResource> 159 </ItemGroup>160 <ItemGroup>161 <WCFMetadataStorage Include="Service References\AdminService\" />162 </ItemGroup>163 <ItemGroup>164 <None Include="Service References\AdminService\configuration91.svcinfo" />165 </ItemGroup>166 <ItemGroup>167 <None Include="Service References\AdminService\configuration.svcinfo" />168 </ItemGroup>169 <ItemGroup>170 <None Include="Service References\AdminService\Reference.svcmap">171 <Generator>WCF Proxy Generator</Generator>172 <LastGenOutput>Reference.cs</LastGenOutput>173 </None>174 103 </ItemGroup> 175 104 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> -
branches/OKB/HeuristicLab.Clients.OKB-3.3/HeuristicLabClientsOKBPlugin.cs.frame
r4408 r4421 32 32 [PluginDependency("HeuristicLab.Common", "3.3")] 33 33 [PluginDependency("HeuristicLab.Common.Resources", "3.3")] 34 [PluginDependency("HeuristicLab.Core", "3.3")] 34 35 [PluginDependency("HeuristicLab.Core.Views", "3.3")] 35 36 [PluginDependency("HeuristicLab.MainForm", "3.3")] -
branches/OKB/HeuristicLab.Clients.OKB-3.3/NamedEntityView.cs
r4408 r4421 23 23 using System.ComponentModel; 24 24 using System.Windows.Forms; 25 using HeuristicLab.Clients.OKB.AdminService;26 25 using HeuristicLab.Core.Views; 27 26 using HeuristicLab.MainForm; … … 31 30 [View("NamedEntoty View")] 32 31 [Content(typeof(INamedEntity), false)] 33 public partial class NamedEntityView : EntityView {32 public partial class NamedEntityView : ItemView { 34 33 public new INamedEntity Content { 35 34 get { return (INamedEntity)base.Content; } -
branches/OKB/HeuristicLab.Clients.OKB-3.3/app.config
r4405 r4421 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_IAdminService" closeTimeout="00:01:00" 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" 7 177 openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" 8 178 bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" … … 25 195 <client> 26 196 <endpoint address="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService" 27 binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdminService" 28 contract="AdminService.IAdminService" name="WSHttpBinding_IAdminService"> 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"> 29 277 <identity> 30 278 <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.