[3112] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3112] | 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 |
|
---|
[4068] | 22 | using System.Reflection;
|
---|
| 23 | using System.Security.Cryptography.X509Certificates;
|
---|
[3006] | 24 | using System.ServiceModel;
|
---|
| 25 |
|
---|
| 26 | namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService {
|
---|
[3092] | 27 | /// <summary>
|
---|
[4495] | 28 | /// Factory class to generate update service client instances for the deployment service.
|
---|
[3092] | 29 | /// </summary>
|
---|
[4495] | 30 | public static class UpdateServiceClientFactory {
|
---|
[3006] | 31 | private static byte[] serverCrtData;
|
---|
| 32 |
|
---|
[3092] | 33 | /// <summary>
|
---|
| 34 | /// static constructor loads the embedded service certificate
|
---|
| 35 | /// </summary>
|
---|
[4495] | 36 | static UpdateServiceClientFactory() {
|
---|
[3771] | 37 | var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.services.heuristiclab.com.cer");
|
---|
[3006] | 38 | serverCrtData = new byte[stream.Length];
|
---|
| 39 | stream.Read(serverCrtData, 0, serverCrtData.Length);
|
---|
| 40 | }
|
---|
| 41 |
|
---|
[3092] | 42 | /// <summary>
|
---|
[4495] | 43 | /// Factory method to create new update service clients for the deployment service.
|
---|
[3092] | 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>
|
---|
[4495] | 50 | /// <returns>A new instance of an update service client</returns>
|
---|
| 51 | public static UpdateServiceClient CreateClient() {
|
---|
| 52 | var client = new UpdateServiceClient();
|
---|
[3006] | 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);
|
---|
[3771] | 56 | client.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = System.ServiceModel.Security.X509CertificateValidationMode.Custom;
|
---|
| 57 | client.ClientCredentials.ServiceCertificate.Authentication.CustomCertificateValidator =
|
---|
| 58 | new DeploymentServerCertificateValidator(new X509Certificate2(serverCrtData));
|
---|
[3006] | 59 | return client;
|
---|
| 60 | }
|
---|
| 61 | }
|
---|
| 62 | }
|
---|