1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2010 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 |
|
---|
22 | using System.Reflection;
|
---|
23 | using System.Security.Cryptography.X509Certificates;
|
---|
24 | using System.ServiceModel;
|
---|
25 |
|
---|
26 | namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService {
|
---|
27 | /// <summary>
|
---|
28 | /// Factory class to generated update client instances for the deployment service.
|
---|
29 | /// </summary>
|
---|
30 | public static class UpdateClientFactory {
|
---|
31 | private static byte[] serverCrtData;
|
---|
32 |
|
---|
33 | /// <summary>
|
---|
34 | /// static constructor loads the embedded service certificate
|
---|
35 | /// </summary>
|
---|
36 | static UpdateClientFactory() {
|
---|
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 update 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.UpdateLocation
|
---|
48 | ///
|
---|
49 | /// </summary>
|
---|
50 | /// <returns>A new instance of an update client</returns>
|
---|
51 | public static UpdateClient CreateClient() {
|
---|
52 | var client = new UpdateClient();
|
---|
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.UpdateLocation);
|
---|
56 | client.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = System.ServiceModel.Security.X509CertificateValidationMode.Custom;
|
---|
57 | client.ClientCredentials.ServiceCertificate.Authentication.CustomCertificateValidator =
|
---|
58 | new DeploymentServerCertificateValidator(new X509Certificate2(serverCrtData));
|
---|
59 | return client;
|
---|
60 | }
|
---|
61 | }
|
---|
62 | }
|
---|