This is the third of six tasks required to create a Windows Communication Foundation (WCF) application. For an overview of all six of the tasks, see the Getting Started Tutorial topic.

This topic describes how to host a Windows Communication Foundation (WCF) service in a console application. This procedure consists of the following steps:

这个主题描述了如何在控制台应用程序中托管一个wcf服务。包含以下几个步骤

  • Create a console application project to host the service.      创建一个控制台应用项目来托管服务

  • Create a service host for the service.    //为服务创建一个servicehost

  • Enable metadata exchange.  启用元数据的交换

  • Open the service host.    打开servicehost

A complete listing of the code written in this task is provided in the example following the procedure.

To create a new console application to host the service

  • 1.Create a new Console Application project by right-clicking on the Getting Started solution, selecting, Add, New Project. In the Add New Project dialog on the left hand side of the dialog select Windows underC# or VB. In the center section of the dialog select Console Application. Name the project GettingStartedHost.

右键解决方案,创建一个新的控制台应用程序。选择添加,新建项目。新建一个名为GettingStartedHost。

  • 2.Set the target framework of the GettingStartedHost project to .NET Framework 4.5 by right clicking on GettingStartedHost in the Solution Explorer and selecting Properties. In the dropdown box labeledTarget Framework select .NET Framework 4.5. Setting the target framework for a VB project is a little different, in the GettingStartedHost project properties dialog, click the Compile tab on the left-hand side of the screen, and then click the Advanced Compile Options button at the lower left-hand corner of the dialog. Then select .NET Framework 4.5 in the dropdown box labeled Target Framework.

Setting the target framework will cause Visual Studio 2012 to reload the solution, press OK when prompted.

右键解决方案资源管理器中GettingStartedHost项目属性,设置项目为.net4.5框架。

  • 3.Add a reference to the GettingStartedLib project to the GettingStartedHost project by right clicking on the References folder under the GettingStartedHost project in the solution explorer and select Add Reference. In the Add Reference dialog, select Solution on the left-hand side of the dialog and select GettingStartedLib in the center section of the dialog and click Add. This makes the types defined in GettingStartedLib available to the GettingStartedHost project.

添加GettingStartedLib 项目作为GettingStartedHost 的引用。

  • 4.Add a reference to System.ServiceModel to the GettingStartedHost project by right-clicking the Reference folder under the GettingStartedHost project in Solution Explorer and select Add Reference. In the Add Reference dialog select Framework on the left-hand side of the dialog. In the Search Assemblies textbox, type in System.ServiceModel. In the center section of the dialog select System.ServiceModel, click theAdd button, and click the Close button. Save the solution by clicking the Save All button below the main menu.

给GettingStartedHost 项目添加System.ServiceModel的引用。

To host the service

  • Open the Program.cs or Module.vb file and enter the following code:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ServiceModel;//Uri和ServiceHost
using System.ServiceModel.Description;//ServiceMetadataBehavior
using GettingStartedLib; namespace GettingStartedHost
{
class Program
{
static void Main(string[] args)
{
// Step 1 Create a URI to serve as the base address.
Uri baseAddress = new Uri("http://localhost:8000/GettingStarted/"); // Step 2 Create a ServiceHost instance
ServiceHost selfHost = new ServiceHost(typeof(CalculatorService), baseAddress); try
{
// Step 3 Add a service endpoint.
selfHost.AddServiceEndpoint(typeof(ICalculator), new WSHttpBinding(), "CalculatorService"); // Step 4 Enable metadata exchange.
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
selfHost.Description.Behaviors.Add(smb); // Step 5 Start the service.
selfHost.Open();
Console.WriteLine("The service is ready.");
Console.WriteLine("Press <ENTER> to terminate service.");
Console.WriteLine();
Console.ReadLine(); // Close the ServiceHostBase to shutdown the service.
selfHost.Close();
}
catch (CommunicationException ce)
{
Console.WriteLine("An exception occurred: {0}", ce.Message);
selfHost.Abort();
}
}
}
}
  • Step 1 - Creates an instance of the Uri class to hold the base address of the service. Services are identified by a URL which contains a base address and an optional URI. The base address is formatted as follows:[transport]://[machine-name or domain][:optional port #]/[optional URI segment]The base address for the calculator service uses the HTTP transport, localhost, port 8000, and the URI segment “GettingStarted”

创建一个Uri类的实例,来保存服务的基础地址。服务通过url来进行识别,url包含了基础地址以及可选的uri。基础地址的格式如下:[transport]://[machine-name or domain][:optional port#]/[optional URI segment]

calculator 服务的基地址,使用的是http传输,localhost,端口8000。URI部分为GettingStarted

  • Step 2 – Creates an instance of the ServicHost class to host the service. The constructor takes two parameters, the type of the class that implements the service contract, and the base address of the service.

创建一个ServicHost 类的实例来托管服务。构造函数接受2个参数,实现了服务契约的类的类型,服务的基地址。

  • Step 3 – Creates a ServiceEndpoint instance. A service endpoint is composed of an address, a binding, and a service contract. The ServiceEndpoint constructor therefore takes the service contract interface type, a binding, and an address. The service contract is ICalculator, which you defined and implement in the service type. The binding used in this sample is WSHttpBinding which is a built-in binding that is used for connecting to endpoints that conform to the WS-* specifications. For more information about WCF bindings, see Windows Communication Foundation Bindings Overview. The address is appended to the base address to identify the endpoint. The address specified in this code is “Calculator” so the fully qualified address for the endpoint is“http://localhost:8000/GettingStartedService/Calculator”

创建ServiceEndpoint 的实例。服务终结点由地址,绑定,服务契约构成。服务终结点的构造函数需要服务契约的接口类型,绑定以及地址。服务契约是ICalculator,此接口定义了,并且在服务类型中实现。在这个示例中使用的绑定是WSHttpBinding,用来连接符合WS-*规范的终结点。地址附加到基地址上来识别终结点。这个代码示例中的地址指定为Calculator,所以这个终结点的完全限定地址为http://localhost:8000/GettingStartedService/Calculator

Important

Adding a service endpoint is optional when using .NET Framework 4 or later. In these versions, if no endpoints are added in code or configuration, WCF adds one default endpoint for each combination of base address and contract implemented by the service. For more information about default endpoints see Specifying an Endpoint Address. For more information about default endpoints, bindings, and behaviors, see Simplified Configuration and Simplified Configuration for WCF Services.

重点:在.net4.0以及更新的版本中,添加服务终结点是可选的。如果在代码或配置中没有添加终结点,那么wcf会为每一个基地址和服务实现的契约添加默认的终结点。

  • Step 4 – Enable metadata exchange. Clients will use metadata exchange to generate proxies that will be used to call the service operations. To enable metadata exchange create a ServiceMetadataBehaviorinstance, set it’s HttpGetEnabled property to true, and add the behavior to the Behaviors collection of the ServiceHost instance.

启用元数据交互。客户端使用元数据生成代理来调用服务操作。为了确保元数据交换,代码中需要创建一个ServiceMetadataBehavior对象,然后设置HttpGetEnabled属性为true。并且把这个行为添加到ServiceHost实例的Behaviors集合中。

  • Step 5 – Open the ServiceHost to listen for incoming messages. Notice the code waits for the user to hit enter. If you do not do this, the app will close immediately and the service will shut down.Also notice a try/catch block used. After the ServiceHost has been instantiated, all other code is placed in a try/catch block. For more information about safely catching exceptions thrown by ServiceHost, seeAvoiding Problems with the Using Statement

打开ServiceHost来监听进来的消息。注意代码在等待用户enter。如果你没有做这个的话,app会立即关闭并且服务也会被关闭。

还需要注意的是,使用了try catch进行异常的捕获。在ServiceHost实例化之后,所以的代码都放在了try catch块中。

To verify the service is working   确认托管服务已经在工作

  1. Run the GettingStartedHost console application from inside Visual Studio 2012. When running on Windows Vista and later operating systems, the service must be run with administrator privileges. Because Visual Studio was run with Administrator privileges, GettingStartedHost is also run with Administrator privileges. You can also start a new command prompt running it with Administrator privileges and run service.exe within it.

  2. Open Internet Explorer and browse to the service's debug page at http://localhost:8000/GettingStarted/CalculatorService.

1.在VS2012中运行GettingStartedHost控制台应用程序,vista之后的操作系统,必须以管理员权限来运行服务。因为VS2012是以管理员权限运行的,所以GettingStartedHost也是以管理员权限运行的。

你也可以启动cmd命令提示符,使用管理员权限运行。然后调用service.exe

2.打开浏览器,在http://localhost:8000/GettingStarted/CalculatorService浏览服务的调试页面

Notice:

Services such as this one require permission to register HTTP addresses on the machine for listening. Administrator accounts have this permission, but non-administrator accounts must be granted permission for HTTP namespaces. For more information about how to configure namespace reservations, see Configuring HTTP and HTTPS. When running under Visual Studio, the service.exe must be run with administrator privileges.

像这样的服务需要有权限在机器上注册Http地址来监听。管理员账号拥有这个权限,但是非管理员用户必须获得HTTP命名空间的授权。

上面的代码涉及到的类

System命名空间下的System.Uri

System.ServiceModel命名空间下的System.ServiceModel.ServiceHost

System.ServiceModel命名空间下的System.ServiceModel.WSHttpBinding

System.ServiceModel.Description命名空间下的System.ServiceModel.Description.ServiceMetadataBehavior

How to: Host and Run a Basic Windows Communication Foundation Service的更多相关文章

  1. Step3 - How to: Host and Run a Basic Windows Communication Foundation Service

    This is the third of six tasks required to create a Windows Communication Foundation (WCF) applicati ...

  2. How to: Define a Windows Communication Foundation Service Contract

    This is the first of six tasks required to create a basic Windows Communication Foundation (WCF) app ...

  3. Step1 - How to: Define a Windows Communication Foundation Service Contract

    https://msdn.microsoft.com/en-us/library/ms731835.aspx This is the first of six tasks required to cr ...

  4. How to: Implement a Windows Communication Foundation Service Contract

    This is the second of six tasks required to create a basic Windows Communication Foundation (WCF) se ...

  5. Step2 - How to: Implement a Windows Communication Foundation Service Contract

    This is the second of six tasks required to create a basic Windows Communication Foundation (WCF) se ...

  6. How to: Create a Windows Communication Foundation Client

    How to: Create a Windows Communication Foundation Client To create a Windows Communication Foundatio ...

  7. Windows Communication Foundation (WCF)和Windows CardSpace的示例程序

    微软公司昨天发布了一个Windows Communication Foundation (WCF)和Windows CardSpace的示例程序包,内容极为丰富,从最简单的Hello World到复杂 ...

  8. 为应用程序池“XX”提供服务的进程在与 Windows Process Activation Service 通信时出现严重错误

    场景 WCF应用程序部署在IIS7中,使用net.tcp协议对外给几百台客户端提供服务,应用程序池不断崩溃重启. 分析过程 在事件查看器中看到的错误信息类似于 为应用程序池“XX”提供服务的进程在与 ...

  9. 【翻译习作】 Windows Workflow Foundation程序开发-第一章02

    1.2      Windows Workflow概览 微软的Windows Workflow Foundation(简称WF)是.NET框架3.0版的一部分..NET3.0其它主要部分是Window ...

随机推荐

  1. 快速登录IRC网络聊天室

    随便起个NickName,进行人机验证,然后点击Connect进去就可以咯.

  2. ios专题 - objc runtime 动态增加属性

    objective-c中,有类别可以在不修改源码的基础上增加方法:近排在看别人的开源代码时,发现还可以动态增加属性.而且是在运行时,太牛B了. 使用运行时库,必须要先引入 objc/runtime.h ...

  3. Error 1937.An error occurred during the installation of assembly...

    工具:Installshield 2008 任务: 1. 创建一个 Merge Module 工程, 在 Merge Module 中包含若干 dll, 在安装过程中,dll 会被安装到指定路径. 2 ...

  4. Passbook教程中生成pass时遇到的“Couldn't find a passTypeIdentifier in the pass”

    报错如下: 2014-03-28 15:19:17.990 signpass[6358:507] Couldn't find a passTypeIdentifier in the pass 解决方案 ...

  5. ORA-22275: invalid LOB locator specified

    性能测试20行和20000行的出现错误 20行的字符没有问题,两万行的出行问题如下 [2014-02-11 09:21:03.343665][17694862] Level 0 cicmpub.C: ...

  6. 【原创】开机出现grub rescue,修复办法

    出现这种问题 一般在于进行了磁盘分区(GHOST备份时也会造成)导致grub引导文件找不到.我们只要让它找到引导文件就好了. 此时屏幕上提示grub resume>  我们先输入set看下现在g ...

  7. Qwt的编译与配置

    QWT,全称是Qt Widgets for Technical Applications,是一个基于LGPL版权协议的开源项目, 可生成各种统计图.它为具有技术专业背景的程序提供GUI组件和一组实用类 ...

  8. javascript变量

    5种简单数据类型(基本数据类型) undefined  null  boolean  number  string (还有一种复杂的数据类型:object) 变量的两种不同的数据类型:基本类型(简单数 ...

  9. C#实现登录窗口(不用隐藏)

    C#登录窗口的实现,特点就是不用隐藏,感兴趣的朋友不要错过 (1).在程序入口处,打开登录窗口 复制代码代码如下: static void Main()  {  Application.EnableV ...

  10. 技术名词解释——Camus

    由LinkedIn公司开发的消息队列同步框架,提供将Kafka(一种消息队列框架)的数据装载到Hadoop分布式文件系统(HDFS)的功能. 英文版原文出处:http://docs.confluent ...