Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/3.3/Advanced/DeploymentService/AdminServiceClientFactory.cs @ 9456

Last change on this file since 9456 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 3.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System.Reflection;
23using System.Security.Cryptography.X509Certificates;
24using System.ServiceModel;
25
26namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService {
27  /// <summary>
28  /// Factory class to generate administration service client instances for the deployment service.
29  /// </summary>
30  public static class AdminServiceClientFactory {
31    private static byte[] serverCrtData;
32
33    /// <summary>
34    /// static constructor loads the embedded service certificate
35    /// </summary>
36    static AdminServiceClientFactory() {
37      var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.services.heuristiclab.com.cer");
38      serverCrtData = new byte[stream.Length];
39      stream.Read(serverCrtData, 0, serverCrtData.Length);
40    }
41
42    /// <summary>
43    /// Factory method to create new administration service clients for the deployment service.
44    /// Sets the connection string and user credentials from values provided in settings.
45    /// HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationUserName
46    /// HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationPassword
47    /// HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationnAdministrationAddress
48    ///
49    /// </summary>
50    /// <returns>A new instance of an adimistration service client</returns>
51    public static AdminServiceClient CreateClient() {
52      var client = new AdminServiceClient();
53      client.ClientCredentials.UserName.UserName = HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationUserName;
54      client.ClientCredentials.UserName.Password = HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationPassword;
55      client.Endpoint.Address = new EndpointAddress(HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationAdministrationAddress);
56      client.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = System.ServiceModel.Security.X509CertificateValidationMode.Custom;
57      client.ClientCredentials.ServiceCertificate.Authentication.CustomCertificateValidator =
58          new DeploymentServerCertificateValidator(new X509Certificate2(serverCrtData));
59
60      return client;
61    }
62  }
63}
Note: See TracBrowser for help on using the repository browser.