简体   繁体   English

在Windows窗体应用程序中托管WCF服务

[英]Hosting WCF service inside a Windows Forms application

I need to host a WCF service inside a Windows Forms application and call the WCF service from a Windows service that will send data to the WCF service which will show it in the Windows Forms application (desktop application). 我需要在Windows窗体应用程序中托管WCF服务,并从Windows服务调用WCF服务,该服务将数据发送到WCF服务,该服务将在Windows窗体应用程序(桌面应用程序)中显示它。

How can I implement this? 我该如何实现呢? I need code that is working correctly and tried before. 我需要正常工作并且之前尝试过的代码。

This code should be enough to get you started: 这段代码应该足以让你入门:

Form1.cs Form1.cs的

namespace TestWinform
{
    public partial class Form1 : Form
    {
        private ServiceHost Host;

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            Host = new ServiceHost(typeof(MyWcfService));
            Host.Open();
        }

        private void Form1_FormClosed(object sender, FormClosedEventArgs e)
        {
            Host.Close();
        }
    }
}

App.config App.config中

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <system.serviceModel>
        <behaviors>
            <serviceBehaviors>
                <behavior name="TestWinform.MyWcfServiceBehavior">
                    <serviceMetadata httpGetEnabled="true" />
                    <serviceDebug includeExceptionDetailInFaults="false" />
                </behavior>
            </serviceBehaviors>
        </behaviors>
        <services>
            <service behaviorConfiguration="TestWinform.MyWcfServiceBehavior"
                name="TestWinform.MyWcfService">
                <endpoint address="" binding="wsHttpBinding" contract="TestWinform.IMyWcfService">
                    <identity>
                        <dns value="localhost" />
                    </identity>
                </endpoint>
                <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
                <host>
                    <baseAddresses>
                        <add baseAddress="http://localhost:8080/MyWcfService/" />
                    </baseAddresses>
                </host>
            </service>
        </services>
    </system.serviceModel>
</configuration>

Note that the App.config has been generated by Visual Studio when I added a WCF Service to my project. 请注意,当我向项目添加WCF服务时,Visual Studio已生成App.config。

I recomend you to also use a Thread: 我建议你也使用一个线程:

    private void Form1_Load(object sender, EventArgs e)
    {
        Task.Factory.StartNew(() =>
        {
            host = new ServiceHost(typeof(AssinadorWcf.AssinadorDigitalLecom));
            host.Open();
        });
    }

    private void Form1_FormClosed(object sender, FormClosedEventArgs e)
    {
        try
        {
            host.Close();
        }
        catch
        {
        }
    }

Use the below code to host the WCF service in a Windows Forms application: 使用以下代码在Windows窗体应用程序中承载WCF服务:

using System.ServiceModel.Channels;
ServiceHost host = new ServiceHost(typeof(MyNamespace.OrderService));
BindingElementCollection bec = new BindingElementCollection();
SymmetricSecurityBindingElement ssbe = new
SymmetricSecurityBindingElement();
ssbe.LocalServiceSettings.InactivityTimeout = new TimeSpan(0, 10, 0);
bec.Add(ssbe);
bec.Add(new TextMessageEncodingBindingElement());
bec.Add(new HttpsTransportBindingElement());
CustomBinding customBinding = new CustomBinding(bec);
host.AddServiceEndpoint(typeof(MyNamespace.IOrderService),customBinding,"http://localhost:8000/O
rderService/");

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM