WF4.0实战(三):WCF服务

简介:

这篇文章,通过一个简单的WCF交互,讲解一下WF4.0中一组重要活动:Messaging,它包括:Receive
、ReceiveAndSendReply、Send、SendAndReceiveReply。这里将详细讲解ReceiveAndSendReply和SendAndReceiveReply两个活动的配置以及使用,以及它与普通的WCF的区别。

    如果你了解WCF,你一定知道WCF可以缩略为ABC。A :Address (服务在哪里?),B: Binding (怎么才能访问服务?),C: Contract (提供了哪些服务?)。既然同样也是WCF服务,WF4.0中WCF服务同样也存在ABC的概念。我将一步一步通过实现WF中的wcf服务的ABC来实现这个Demo,请你注意它与普通的WCF的区别。

     首先,我们定义一下用于数据交换的实体。

     定义Request消息ReservationRequest

代码

定义Response消息ReservationResponse:

代码

服务端的实现

一、C(Contract )

定义这个服务具体提供了哪些服务:

复制代码
1      [ServiceContract]
2       public   interface  ILibraryReservation
3      {
4          [OperationContract]
5           void  RequestBook(ReservationRequest request);
6 
7          [OperationContract]
8           void  RespondToRequest(ReservationResponse response);
9      }
复制代码

这里定义了两个方法:RequestBook、RespondToRequest。在普通的WCF中,一般做法是:通过一个类继承这个接口。在类中实现wcf的具体内容。而在WF4.0中,这里我将使用Messaging中的活动:ReceiveAndSendReply。

1、新建一个控制台应用程序WF3Demo:

注意:这里创建的是Console Application。而不是WorkflowConsoleApplication。

2、添加下面这些引用:

    System.Activities.dll

    System.ServiceModel.dll

    System.ServiceModel.Activities.dll

3、创建一个自定义活动CreateResponse,它用于创建返回给客户端的ReservationResponse对象,代码如下:

复制代码
 1    // 这种是一个自定义的活动,用于创建一个ReservationResponse对象
 2       public   sealed   class  CreateResponse : CodeActivity
 3      {
 4           public  InArgument < ReservationRequest >  Request {  get set ; }
 5           public  InArgument < bool >  Reserved {  get set ; }
 6           public  OutArgument < ReservationResponse >  Response {  get set ; }
 7 
 8           protected   override   void  Execute(CodeActivityContext context)
 9          {
10               //  打开配置文件
11              Configuration config  =  ConfigurationManager
12                  .OpenExeConfiguration(ConfigurationUserLevel.None);
13              AppSettingsSection app  =
14                  (AppSettingsSection)config.GetSection( " appSettings " );
15 
16               //  创建ReservationResponse对象
17              ReservationResponse r  =   new  ReservationResponse
18                  (
19                      Request.Get(context),
20                      Reserved.Get(context),
21                       new  Branch
22                      {
23                          BranchName  =  app.Settings[ " Branch Name " ].Value,
24                          BranchID  =   new  Guid(app.Settings[ " ID " ].Value),
25                          Address  =  app.Settings[ " Address " ].Value
26                      }
27                  );
28               //  将Response保存到OutArgument
29              Response.Set(context, r);
30          }
31      }
复制代码

5、添加一个名字为ProcessRequest工作流,在其中拖放一个ReceiveAndSendReply。

    在ProcessRequest添加如下变量:

设置Receive活动:

    OperationName:RequestBook

    Content: 设置Message data为request、设置Message type为ReservationRequest

    ServiceContractName:ILibraryReservation

    ILibraryReservation:true

设置SendReply

Content: 设置Message data为response、设置Message type 为ReservationResponse,如下图:

6、为了更好的诠释服务,在Receive活动和SendReply活动之间加入如下图活动,详细见代码。

这样我们定义好了 Contract

二、B(Binding)和A(Address )

    C实现之后,Binding和Address就简单了。这里Binding使用BasicHttpBinding,使用如下代码实现B和A:

复制代码
 1   WorkflowService service  =   new  WorkflowService
 2              {
 3                  Name  =   " LibraryReservation " ,
 4                  Body  =   new  ProcessRequest(),
 5                  Endpoints  =
 6                  {
 7                       new  Endpoint
 8                      {
 9                          ServiceContractName = " ILibraryReservation " ,
10                          AddressUri  =   new  Uri( " http://localhost: "   +  adr  +  
11                               " /LibraryReservation " ),
12                          Binding  =   new  BasicHttpBinding(),
13                      }
14                  }
15              };
16 
17              System.ServiceModel.Activities.WorkflowServiceHost wsh  =
18                   new  System.ServiceModel.Activities.WorkflowServiceHost(service);
19 
20              wsh.Open();
复制代码

至此,WF4中的wcf服务就这样简单的配置好了。

客户端调用:

    对于调用一般的WCF,可以通过添加service引用或者通过命令自动生成调用wcf的代码。这与WF4.0不同,这里我使用SendAndReceiveReply活动来调用WCF服务。

1、首先自定义一个活动CreateRequest,用于创建一个提交wcf服务ReservationRequest对象。

复制代码
 1       public   sealed   class  CreateRequest : CodeActivity
 2      {
 3           public  InArgument < string >  Title {  get set ; }
 4           public  InArgument < string >  Author {  get set ; }
 5           public  InArgument < string >  ISBN {  get set ; }
 6           public  OutArgument < ReservationRequest >  Request {  get set ; }
 7           public  OutArgument < string >  RequestAddress {  get set ; }
 8 
 9           protected   override   void  Execute(CodeActivityContext context)
10          {
11               //  打开配置文件,得到请求的地址
12              Configuration config  =  ConfigurationManager
13                  .OpenExeConfiguration(ConfigurationUserLevel.None);
14              AppSettingsSection app  =
15                  (AppSettingsSection)config.GetSection( " appSettings " );
16 
17               //  使用输入参数创建一个ReservationRequest对象
18              ReservationRequest r  =   new  ReservationRequest
19                  (
20                      Title.Get(context),
21                      Author.Get(context),
22                      ISBN.Get(context),
23                       new  Branch
24                      {
25                          BranchName  =  app.Settings[ " Branch Name " ].Value,
26                          BranchID  =   new  Guid(app.Settings[ " ID " ].Value),
27                          Address  =  app.Settings[ " Address " ].Value
28                      }
29                  );
30 
31               // 将request保存到OutArgument中 
32              Request.Set(context, r);
33 
34               //  将address保存到OutArgument
35              RequestAddress.Set(context, app.Settings[ " Request Address " ].Value);
36          }
37      }
复制代码

2、添加一个名字为SendRequest的工作流,在其中拖放一个SendAndReceiveReply活动,以及一个CreateRequest活动,将CreateRequest活动拖放到Send前面。

3、在ProcessRequest添加如下变量:

 在ProcessRequest添加如下参数:

4、设置Send:

    OperationName:RequestBook

    Content: 设置Message data为request、设置Message type为ReservationRequest

    ServiceContractName:ILibraryReservation

    Endpoint:Endpoint

    Endpoint.Binding:BasicHttpBinding

    EndpointAddress:New Uri("http://localhost/:" + requestAddress + "/LibraryReservation")

5、设置ReceiveReplyForSend

    将ReceiveReplyForSend的Content的Message data设为response,将ReceiveReplyForSend的Content的Message type设为ReservationResponse

6、为了便于观察,添加几个WriteLine用于输出,如下图,详见代码:

这样设置好了客户端。

使用wcf服务:

我们只需启动ProcessRequest这个工作流来调用wcf服务:

复制代码
 1              IDictionary < string object >  input  =   new  Dictionary < string object >  
 2              {
 3                  {  " Title "  ,  " Gone with the Wind "  },
 4                  {  " Author " " Margaret Mitchell "  },
 5                  {  " ISBN " " 9781416548898 "  }
 6              };
 7 
 8              IDictionary < string object >  output  =
 9                  WorkflowInvoker.Invoke( new  SendRequest(), input);
10              ReservationResponse resp  =  (ReservationResponse)output[ " Response " ];
复制代码

运行程序:

启动WCF服务。等待客户端的调用,如下图:

输入回车,启动客户端的工作流,来调用WCF服务,输入结果如下:

整个运行的过程

如下图:

总结:

    这篇文章讲述了在WF4.0中使用WCF服务。WF中的WCF与普通的WCF,在原理上是一致的,但是在形式上区别很大。WF4.0中提供了一组活动,这样比直接使用WCF更加简单和直观。






本文转自麒麟博客园博客,原文链接:http://www.cnblogs.com/zhuqil/archive/2010/04/18/wfserver.html,如需转载请自行联系原作者

相关文章
|
前端开发
WCF更新服务引用报错的原因之一
WCF更新服务引用报错的原因之一
|
C# 数据安全/隐私保护
c#如何创建WCF服务到发布(SqlServer版已经验证)
c#如何创建WCF服务到发布(SqlServer版已经验证)
73 0
|
安全 数据库连接 数据库
WCF服务创建到发布(SqlServer版)
在本示例开始之前,让我们先来了解一下什么是wcf? wcf有哪些特点? wcf是一个面向服务编程的综合分层架构。该架构的项层为服务模型层。 使用户用最少的时间和精力建立自己的软件产品和外界通信的模型。它使得开发者能够建立一个跨平台的安全、可信赖、事务性的解决方案。且能与已有系统兼容写作。 简单概括就是:一组数据通信的应用程序开发接口。
111 0
|
C++
WCF基础教程(二)——解析iis8和iis8.5+VS2013发布wcf服务问题
WCF基础教程(二)——解析iis8和iis8.5+VS2013发布wcf服务问题
138 0
WCF基础教程(二)——解析iis8和iis8.5+VS2013发布wcf服务问题
WCF使用纯代码的方式进行服务寄宿
服务寄宿的目的是为了开启一个进程,为WCF服务提供一个运行的环境。通过为服务添加一个或者多个终结点,使之暴露给潜在的服务消费,服务消费者通过匹配的终结点对该服务进行调用,除去上面的两种寄宿方式,还可以以纯代码的方式实现服务的寄宿工作。
891 0
|
Windows
WCF服务寄宿到IIS
一.WCF简介: Windows Communication Foundation(WCF)是由微软开发的一系列支持数据通信的应用程序框架,可以翻译为Windows 通讯开发平台。整合了原有的windows通讯的 .net Remoting,WebService,Socket的机制,并融合有HTTP和FTP的相关技术。
1096 0
WCF服务自我寄宿
WCF服务的寄宿方式 WCF寄宿方式是一种非常灵活的操作,可以寄宿在各种进程之中,常见的寄宿有: IIS服务、Windows服务、Winform程序、控制台程序中进行寄宿,从而实现WCF服务的运行,为调用者方便、高效提供服务调用。
1035 0
|
C#
C#面向服务编程技术WCF从入门到实战演练
一、WCF课程介绍 1.1、Web Service会被WCF取代吗? 对于这个问题阿笨的回答是:两者在功能特性上却是有新旧之分,但是对于特定的系统,适合自己的就是最好的。不能哪一个技术框架和行业标准作比较,任何对于二者的比较都是错误的,因为两者根不不在同一个范畴里。
1400 0
|
网络架构
(纯代码)快速创建wcf rest 服务
因为有一个小工具需要和其它的业务对接数据,所以就试一下看能不能弄一个无需配置快速对接的方法出来,百(以)度(讹)过(传)后(讹),最后还是对照wcf配置对象调试出来了: 1.创建WebHttpBinding 2.
1013 0