using Pluto.Registration;
namespace RegistrationServer
{
partial class RegistrationService
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
///
/// Set the Port to use for the Channel
///
/// Port To use
private void SetPort(int Port)
{
if (Port > 0 && this.ServerChannel.Port != Port)
{
this.ServerChannel.Port = Port;
this.ServerChannel.TcpServer.Port = Port;
}
}
#region Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.ServerChannel = new RemObjects.SDK.Server.IpTcpServerChannel(this.components);
this.binMessage = new RemObjects.SDK.BinMessage();
this.aesEncryptionEnvelope = new RemObjects.SDK.AesEncryptionEnvelope();
((System.ComponentModel.ISupportInitialize)(this.ServerChannel)).BeginInit();
//
// ServerChannel
//
this.ServerChannel.Dispatchers.Add(new RemObjects.SDK.Server.MessageDispatcher("bin", this.binMessage));
this.ServerChannel.Port = 443;
//
//
//
this.ServerChannel.TcpServer.Port = 443;
//
// binMessage
//
this.binMessage.ContentType = "application/octet-stream";
this.binMessage.Envelopes.Add(new RemObjects.SDK.MessageEnvelopeItem(this.aesEncryptionEnvelope));
this.binMessage.SerializerInstance = null;
//
// aesEncryptionEnvelope
//
this.aesEncryptionEnvelope.EnvelopeMarker = "AES";
this.aesEncryptionEnvelope.Password = "KxHWkkE5PAp4tuTzmPKQF7RUyylMk7VOV8zfYln2w6NZJMOvT3yrXofIJWxJYRSQwAkm8DysTG9k7";
//
// RegistrationService
//
this.ServiceName = "PlutoRegistrationServer";
((System.ComponentModel.ISupportInitialize)(this.ServerChannel)).EndInit();
}
#endregion
private RemObjects.SDK.Server.IpTcpServerChannel ServerChannel;
private RemObjects.SDK.BinMessage binMessage;
private RemObjects.SDK.AesEncryptionEnvelope aesEncryptionEnvelope;
}
}