-1

サービスをホストするアプリケーションがありますWCF

namespace ServiceLibrary
{

        public delegate void StatusEventHandler(Capture capture);

        // You have created a class library to define and implement your WCF service.
        // You will need to add a reference to this library from another project and add 
        // the code to that project to host the service as described below.  Another way
        // to create and host a WCF service is by using the Add New Item, WCF Service 
        // template within an existing project such as a Console Application or a Windows 
        // Application.

        [ServiceContract()]
        public interface IService1
        {
            [OperationContract]
            string ClientMsg(string str);
        }

            [ServiceBehavior(
    ConcurrencyMode = ConcurrencyMode.Multiple,
    InstanceContextMode = InstanceContextMode.PerSession)]
        public class service1 : IService1
        {
            public event StatusEventHandler CapturingEvent;
            public event StatusEventHandler OnProcessExitedEvent;
            public event StatusEventHandler OnFinishEvent;

            public string ClientMsg(string str)
            {
                return DoWork(str);
            }

            private DoWork(string str)
            }
               MyClass obj = New MyClass();
               obj.Start(str); /// Do my job
            }
        }
    }

クライアントは文字列をサーバーに送信し、クラスのインスタンスを開き、このクラスはプロセスを開き、仕事をしてプロセスID番号をクライアントに返します。このサーバーは複数のクライアントからメッセージを受信したため、複数のクライアントが同時にサーバーにメッセージを送信する状況を避けるために、クライアント メッセージを受信するたびに新しいスレッドを開く必要があるのではないかと考えています。

これは、メインフォームでサーバー接続を開く方法です:

private void connect()
{
    try
    {
        if (!isConnected)
        {
            // Returns a list of ipaddress configuration
            IPHostEntry ips = Dns.GetHostEntry(Dns.GetHostName());

            // Get machine ipaddress
            IPAddress _ipAddress = IPAddress.Parse(tbServerIp.Text);

            // Create the url that is needed to specify where the service should be started
            urlService = "net.tcp://" + _ipAddress.ToString() + ":8000/CapturesService";

            // Instruct the ServiceHost that the type that is used is a ServiceLibrary.service1
            host = new ServiceHost(typeof(ServiceLibrary.service1));
            //ServiceLibrary.service1 serviceInstance = new ServiceLibrary.service1();
            //serviceInstance.CapturingEvent += serviceInstance_StartCapturingEvent;
            //serviceInstance.OnProcessExitedEvent += serviceInstance_OnProcessExitedEvent;
            //host = new ServiceHost(serviceInstance);
            host.Opening += new EventHandler(host_Opening);
            host.Opened += new EventHandler(host_Opened);
            host.Closing += new EventHandler(host_Closing);
            host.Closed += new EventHandler(host_Closed);

            // The binding is where we can choose what transport layer we want to use. HTTP, TCP ect.
            NetTcpBinding tcpBinding = new NetTcpBinding();
            tcpBinding.TransactionFlow = false;
            tcpBinding.Security.Transport.ProtectionLevel = System.Net.Security.ProtectionLevel.EncryptAndSign;
            tcpBinding.Security.Transport.ClientCredentialType = TcpClientCredentialType.Windows;
            tcpBinding.Security.Mode = SecurityMode.None; // <- Very crucial

            // Add a endpoint
            host.AddServiceEndpoint(typeof(ServiceLibrary.IService1), tcpBinding, urlService);

            // A channel to describe the service. Used with the proxy scvutil.exe tool
            ServiceMetadataBehavior metadataBehavior;
            metadataBehavior = host.Description.Behaviors.Find<ServiceMetadataBehavior>();
            if (metadataBehavior == null)
            {
                // Create the proxy object that is generated via the svcutil.exe tool
                metadataBehavior = new ServiceMetadataBehavior();
                metadataBehavior.HttpGetUrl = new Uri("http://" + _ipAddress.ToString() + ":8001/CapturesService");
                metadataBehavior.HttpGetEnabled = true;
                metadataBehavior.ToString();
                host.Description.Behaviors.Add(metadataBehavior);
                urlMeta = metadataBehavior.HttpGetUrl.ToString();
            }

            host.Open();
            isConnected = true;
        }
        else
        {
            if (asyncWorker.IsBusy)
            {
                // Notify the worker thread that a cancel has been requested.
                // The cancel will not actually happen until the thread in the
                // DoWork checks the bwAsync.CancellationPending flag, for this
                // reason we set the label to "Cancelling...", because we haven't
                // actually cancelled yet.
                asyncWorker.CancelAsync();
            }

            host.Close();
            isConnected = false;
        }
    }
    catch (Exception ex)
    {
        isConnected = false;
        MessageBox.Show(ex.Message);
        return;
    }
}

private int StartTsharkProcess(Capture capture)
{
    ProcessExitedEvent += Capture_ProcessExitedEvent;
    string args = string.Format("-i {0} host {1} {2} -a duration:300 -w {3}",
        Interface.interfaceNumber,
        capture.machineIpAddress,
        getTsharkFilter(),
        Path.Combine(LocalPath.localPath, capture.fileName));

    int processId = InvokeProcess(WiresharkProcesses.Tshark, args);
    return processId;
}
4

1 に答える 1