[3112] | 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;
|
---|
[3006] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using System.Text;
|
---|
| 26 | using System.ServiceModel;
|
---|
| 27 | using System.Security.Cryptography.X509Certificates;
|
---|
| 28 | using System.Reflection;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.PluginInfrastructure.Advanced.DeploymentService {
|
---|
[3092] | 31 | /// <summary>
|
---|
| 32 | /// Factory class to generated update client instances for the deployment service.
|
---|
| 33 | /// </summary>
|
---|
[3006] | 34 | public static class UpdateClientFactory {
|
---|
| 35 | private static byte[] serverCrtData;
|
---|
| 36 |
|
---|
[3092] | 37 | /// <summary>
|
---|
| 38 | /// static constructor loads the embedded service certificate
|
---|
| 39 | /// </summary>
|
---|
[3006] | 40 | static UpdateClientFactory() {
|
---|
| 41 | var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.servdev.cer");
|
---|
| 42 | serverCrtData = new byte[stream.Length];
|
---|
| 43 | stream.Read(serverCrtData, 0, serverCrtData.Length);
|
---|
| 44 | }
|
---|
| 45 |
|
---|
[3092] | 46 | /// <summary>
|
---|
| 47 | /// Factory method to create new update clients for the deployment service.
|
---|
| 48 | /// Sets the connection string and user credentials from values provided in settings.
|
---|
| 49 | /// HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationUserName
|
---|
| 50 | /// HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationPassword
|
---|
| 51 | /// HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocation
|
---|
| 52 | ///
|
---|
| 53 | /// </summary>
|
---|
| 54 | /// <returns>A new instance of an update client</returns>
|
---|
[3006] | 55 | public static UpdateClient CreateClient() {
|
---|
| 56 | var client = new UpdateClient();
|
---|
| 57 | client.ClientCredentials.UserName.UserName = HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationUserName;
|
---|
| 58 | client.ClientCredentials.UserName.Password = HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocationPassword;
|
---|
| 59 | client.Endpoint.Address = new EndpointAddress(HeuristicLab.PluginInfrastructure.Properties.Settings.Default.UpdateLocation);
|
---|
| 60 | client.ClientCredentials.ServiceCertificate.DefaultCertificate = new X509Certificate2(serverCrtData);
|
---|
| 61 | client.ClientCredentials.ServiceCertificate.Authentication.CertificateValidationMode = System.ServiceModel.Security.X509CertificateValidationMode.None;
|
---|
| 62 | return client;
|
---|
| 63 | }
|
---|
| 64 | }
|
---|
| 65 | }
|
---|