wcf 学习初体验

本文提供了一步一步的指南,详细介绍了如何在Windows服务中托管WCF服务并使用TCP协议进行通信。包括创建WCF服务、配置服务端口、创建Windows服务、安装服务、创建测试客户端等步骤。

转载:

http://www.cnblogs.com/zhucl1006/archive/2008/01/18/1043991.html

经过我写程序验证,上面的教程能够正常运行,感谢博主……最近总是被纠缠于wcf上,没有结果,终于出来一个demo,非常感谢……

 

http://msdn.microsoft.com/en-us/library/ff649818.aspx

这个是微软的MSDN中对于如何创建一个TCP形式的wcf和将wcf寄宿于windows服务…希望对大家有用户……

微软的MSDN如下:

How to: Host WCF in a Windows Service Using TCP

25 out of 47 rated this helpful Rate this topic

patterns & practices Developer Center

Applies To

  • Microsoft Windows Communication Foundation (WCF) 3.5
  • Microsoft Visual Studio 2008

Summary

This how-to article walks you through the process of hosting a WCF service within a Microsoft Windows service.

Contents

Objectives

  • Create a simple WCF service.
  • Host your WCF service in a Windows service using Transmission Control Protocol (TCP).
  • Create a simple client to consume your service.

Overview

WCF services can be self-hosted in an application (such as a console or a Windows Forms application), in a Windows service, in Internet Information Services (IIS) 6.0, or in IIS 7.0 with Windows Activation Services (WAS).

The advantages of hosting in a Windows service are:

  • Start on boot. The service will automatically be started when the hosting computer is rebooted.
  • Recovery. The service will be restarted by the Windows Service Control Manager if there is a failure.
  • Administration. Administrators already know how to manage Windows services.
  • Security Identity. Windows Service Control Manager allows you to choose an identity under which the process will run.
  • Binding flexibility. Hosting in a Windows service allows you to choose any binding protocol. IIS 6.0 only allows HTTP bindings.

The disadvantages of hosting in a Windows service are:

  • Installation. You must use a custom installer action or the .NET utility Installutil.exe.
  • Lack of enterprise features. Windows services do not have the security, manageability, scalability, and administrative features that are included in IIS.

To host WCF in a Windows service, you need to create the WCF service, create a Windows service to host the WCF service, and then install and run the Windows service. For the purposes of this How To article, you will use installutil.exe on the command line to install the service. In a production environment, you can use a setup program to install the service.

Summary of Steps

  • Step 1: Create a WCF Service
  • Step 2: Configure the WCF Endpoints to Use TCP and Set the Base Address
  • Step 3: Create a Windows Service
  • Step 4: Add the Service Installers to the Windows Service
  • Step 5: Modify the Windows Service to Host the WCF Service
  • Step 6: Install the Windows Service
  • Step 7: Create a Windows Forms Test Client Application
  • Step 8: Add a WCF Service Reference to the Client
  • Step 9: Test the Client and WCF Service

Step 1: Create a WCF Service

In this step, you create a WCF service to test hosting in a Windows service.

  1. In Visual Studio, click File, click New, and then click Project.
  2. In the Add New Project dialog box, in the Templates section, select WCF Service Library.
  3. In the Add New Project dialog box, click OK to create the WCF Service Library project WcfServiceLibrary1.

Step 2: Configure the WCF Endpoints to Use TCP and Set the Base Address

In this step, you modify the WCF configuration so that the endpoints use TCP instead of the default Hypertext Transfer Protocol (HTTP). You then set the base address for your service. Finally, you set httpGetEnabled to false, since you will be running under TCP.

  1. Right-click the App.config file of the WCF Service Library project and then click Edit WCF Configuration.

    If you do not see the Edit WCF Configuration option, on the Tools menu, click WCF Service Configuration Editor. Close the WCF Service Configuration Editor tool that appears. The option should now appear on the App.config context menu.

  2. In the Configuration Editor, in the configuration section, expand Services and then expand Endpoints.
  3. Select the first endpoint. Under Endpoint Properties, change the Binding from wsHttpBinding to netTcpBinding.
  4. Select the second endpoint. Under Endpoint Properties, change the Binding from mexHttpBinding to mexTcpBinding.
  5. Under Service, select the Host node, select the default address under the BaseAddress list, and then click Edit.
  6. Set the base address to the following and then click OK:
    net.tcp://localhost:8523/Service1 
    
    
  7. Under Advanced, expand the tree under Service Behaviors. Select serviceMetadata and change httpGetEnabled from True to False.
  8. Click File and then click Save to save your configuration changes.
  9. In Visual Studio, verify your configuration, which should look as follows:
      <system.serviceModel>
        <services>
          <service behaviorConfiguration="WcfServiceLibrary1.Service1Behavior"
            name="WcfServiceLibrary1.Service1">
            <endpoint address="" binding="netTcpBinding" bindingConfiguration=""
              contract="WcfServiceLibrary1.IService1">
              <identity>
                <dns value="localhost" />
              </identity>
            </endpoint>
            <endpoint address="mex" binding="mexTcpBinding" bindingConfiguration=""
              contract="IMetadataExchange" />
            <host>
              <baseAddresses>
                <add baseAddress="net.tcp://localhost:8523/Service1" />
              </baseAddresses>
            </host>
          </service>
        </services>
        <behaviors>
          <serviceBehaviors>
            <behavior name="WcfServiceLibrary1.Service1Behavior">
              <serviceMetadata httpGetEnabled="false" />
              <serviceDebug includeExceptionDetailInFaults="false" />
            </behavior>
          </serviceBehaviors>
        </behaviors>
      </system.serviceModel>
    
    
Ff649818.note(en-us,PandP.10).gifNote:
Notes: 
The port 8523 and Service1 are arbitrary for this example. If you run into a conflict where the port is in use, change it.
If you do not set httpGetEnabled to False, you will get an exception in the Event Log when the service tries to start.

Step 3: Create a Windows Service

In this step, you add a Windows Service project to your solution.

  1. Right-click your solution, cllick Add, and then click New Project.
  2. In the Add New Project dialog box, select Windows, and then select Windows Service.
  3. In the Name field, leave the default name WindowsService1 and then click OK to create a Windows service application.
  4. Copy App.config from your WCF Service Library project to your Windows service project. In the WCF Service Library project, right-click theApp.config file, click Copy, and then right-click your Windows service project and click Paste.

Step 4: Add the Service Installers to the Windows Service

In this step, you add service installers to your Windows service.

  1. Right-click Service1.cs and then click View Designer.
  2. Right-click the designer view and then click Add Installer.

    This adds the ProjectInstaller.cs file with two objects, serviceProcessInstaller1 and serviceInstaller1.

  3. In the Design view of ProjectInstaller.cs, right-click serviceProcessInstaller1 and then click Properties.
  4. In the Properties pane, set the Account attribute to NetworkService.
  5. Right-click serviceInstaller1 and then click Properties.
  6. In the Properties pane, set the StartType attribute to Automatic.

Step 5: Modify the Windows Service to Host the WCF Service

In this step, you override the OnStart() and OnStop() methods to start and stop the WCF service inside the Windows service process.

  1. Add a reference to System.ServiceModel to your Windows Service project. To do so, in your Windows service project, right-click theReferences node and then click Add References. In the Add Reference dialog box, select System.ServiceModel and then click OK.
  2. Add a reference to your WCF Service Library project from your Windows service. To do so, in your Windows service project, right-click theReferences node and then click Add References. In the Add Reference dialog box, select the Projects tab. Select the WCF Service Library project, WcfServiceLibrary1, and then click OK.
  3. Add the following using statements to the Service1.cs file in your Windows service project.
    using System.ServiceModel;
    using WcfServiceLibrary1;
    
    
  4. Select Service1.cs and switch to code view.
  5. Declare an internal static member of ServiceHost type, as follows:
    internal static ServiceHost myServiceHost = null; 
    
    
  6. Override the OnStart method of the Windows service, to open the service host as follows:
    protected override void OnStart(string[] args)
    {
       if (myServiceHost != null)
       {
           myServiceHost.Close();
       }
       myServiceHost = new ServiceHost(typeof(Service1));
       myServiceHost.Open();
    }
    
    
  7. Override the OnStop method of the Windows service, to close the service host as follows:
    protected override void OnStop()
    {
       if (myServiceHost != null)
       {
          myServiceHost.Close();
          myServiceHost = null;
       }
    }
    
    
  8. Verify that your Service1.cs resembles the following:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Diagnostics;
    using System.Linq;
    using System.ServiceProcess;
    using System.Text;
    using System.ServiceModel;
    using WcfServiceLibrary1;
    
    namespace WindowsService1
    {
        public partial class Service1: ServiceBase
        {
            internal static ServiceHost myServiceHost = null; 
    
            public WCFServiceHost1()
            {
                InitializeComponent();
            }
            protected override void OnStart(string[] args)
            {
                if (myServiceHost != null)
                {
                    myServiceHost.Close();
                }
                myServiceHost = new ServiceHost(typeof(Service1));
                myServiceHost.Open();
            }
            protected override void OnStop()
            {
                if (myServiceHost != null)
                {
                    myServiceHost.Close();
                    myServiceHost = null;
                }
            }
        }
    }
    
    
  9. In the Solution Explorer, copy the App.config file from the WCF service project to the Windows service project so that the config file will be in both service binary folders after compiling.
  10. Build your solution and verify that your project produces WindowsService1.exe in your project \bin\debug directory of yourWindowsService1 project.

Step 6: Install the Windows Service

In this step, you install the Windows service and run it from the Services console.

  1. Rebuild the solution and open a Visual Studio command prompt.
  2. Browse to the bin directory of the project where WindowsService1.exe is located.
  3. Run the following command to install the service:
    Installutil WindowsService1.exe 
    
    
  4. Start your service. To do so, click Start, click Run, type services.msc and then click OK. Right-click your service and then click Start.
Ff649818.note(en-us,PandP.10).gifNote:
If you have modified the service that is already installed, you can uninstall it by using following command:
Installutil /u WindowsService1.exe

Step 7: Create a Windows Forms Test Client Application

In this step, you create a Windows Forms application named Test Client that you will use to test the WCF service.

  1. Right-click your solution, click Add, and then click New Project.
  2. In the Add New Project dialog box, in the Templates section, select Windows Application.
  3. In the Name field, type Test Client and then click OK to create a Windows Forms application.

Step 8: Add a WCF Service Reference to the Client

In this step, you add a reference from your test client to your WCF service

  1. Right-click your Test client project and select Add Service Reference.
  2. In the Add Service Reference dialog box, set the Address to the following and then click OK
    net.tcp://localhost:8523/Service1
    
    
    Ff649818.note(en-us,PandP.10).gifNote:
    net.tcp://localhost:8523/Service1 is the base address that you set in Step 3 above.

Step 9: Test the Client and WCF Service

In this step, you use the test client to ensure that the WCF service is running properly.

  1. In your Client project, drag a button control onto your form.
  2. Double-click the button control to show the underlying code. In the code behind the button click, create an instance of the proxy, and callGetData of your WCF service. When you call the service, your current user security context will automatically be passed to your WCF service. The code should look as follows:
            private void button1_Click(object sender, EventArgs e)
            {
                ServiceReference1.Service1Client myService = new ServiceReference1.Service1Client();
                MessageBox.Show(myService.GetData(123), “My Service”);
                myService.Close();
            }
    
    
  3. Right-click your client project and then click Set as Startup Project.
  4. Run the client application by pressing F5 or Ctrl+F5.

    When you click the button on the form, the message “You entered: 123” should appear.

Additional Resources




内容概要:本文系统介绍了算术优化算法(AOA)的基本原理、核心思想及Python实现方法,并通过图像分割的实际案例展示了其应用价值。AOA是一种基于种群的元启发式算法,其核心思想来源于四则运算,利用乘除运算进行全局勘探,加减运算进行局部开发,通过数学优化器加速函数(MOA)和数学优化概率(MOP)动态控制搜索过程,在全局探索与局部开发之间实现平衡。文章详细解析了算法的初始化、勘探与开发阶段的更新策略,并提供了完整的Python代码实现,结合Rastrigin函数进行测试验证。进一步地,以Flask框架搭建前后端分离系统,将AOA应用于图像分割任务,展示了其在实际工程中的可行性与高效性。最后,通过收敛速度、寻优精度等指标评估算法性能,并提出自适应参数调整、模型优化和并行计算等改进策略。; 适合人群:具备一定Python编程基础和优化算法基础知识的高校学生、科研人员及工程技术人员,尤其适合从事人工智能、图像处理、智能优化等领域的从业者;; 使用场景及目标:①理解元启发式算法的设计思想与实现机制;②掌握AOA在函数优化、图像分割等实际问题中的建模与求解方法;③学习如何将优化算法集成到Web系统中实现工程化应用;④为算法性能评估与改进提供实践参考; 阅读建议:建议读者结合代码逐行调试,深入理解算法流程中MOA与MOP的作用机制,尝试在不同测试函数上运行算法以观察性能差异,并可进一步扩展图像分割模块,引入更复杂的预处理或后处理技术以提升分割效果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值