MSMQ使用WCF正确实现技巧讲解

开发 开发工具
我们在这篇文章中将会举一个简单的例子为大家详细介绍一下MSMQ使用WCF的相关实现方法。相信朋友们可以从中获得一些帮助。

在了解了WCF之后,大家应该会被他强大的功能,突出的优势所深深吸引。它能够为我们轻松的打造一个跨平台的安全性极强的解决方案。在这里我们会为大家介绍一下MSMQ使用WCF的实现方法。#t#

在windows平台上,MSMQ是***的消息传递中间件,它是一种高速、异步、可靠的通信机制,当我们在Internet上的两个应用需要交换信息时,使用这样的中间件可能是必须的。

WCF完全面向SOA,大大简化了以往风格迥异的多种分布式解决方案。刚好,最近的一个项目需要使用SOA架构,而底层需要使用MSMQ作为消息传递基础设施,所以这两天研究了一下,MSMQ使用WCF的方法。下面以一个例子说明。

首先定义服务端和客户端赖以沟通的Contract,通常将这些Contact定义在一个单独的dll中,如此可被服务端和客户端引用。我们假设一个简单的Contract,即一个接口ICalculate:

  1. [ServiceContract]   
  2. [ServiceContract]   
  3. public interface ICalculate   
  4. {   
  5. [OperationContract(IsOneWay=true)]   
  6. void DealOrder(string orderID);   

 

例子中,我们将ICalculate定义在WcfLib.dll中。

服务端需要实现ICalculate接口:

 

  1. public class Calculator : ICalculate   
  2. {   
  3. public void DealOrder(string orderID)   
  4. {   
  5. Program.FileLogger.Log(orderID);   
  6. }   

 

接下来,服务端就可以以MSMQ的方式发布该服务了,这个可以在配置文件App.Config中进行配置:

 

  1. < ?xml version="1.0" encoding="utf-8" ?>   
  2. < configuration>   
  3. < system.serviceModel>   
  4. < services>   
  5. < service name="WcfTest.Calculator">   
  6. < endpoint address="net.msmq://localhost/private/WcfTest"   
  7. binding="netMsmqBinding" bindingConfiguration="msmq"   
  8. contract="WcfLib.ICalculate"/>   
  9. < /service>   
  10. < /services> < bindings>   
  11. < netMsmqBinding>   
  12. < binding name="msmq">   
  13. < security mode ="None"/>   
  14. < /binding>   
  15. < /netMsmqBinding>   
  16. < /bindings>   
  17. < /system.serviceModel>   
  18. < /configuration>  

 

配置中红色部分标志了WCF的“ABC”,address表明了将使用本地的名为WcfTest的专用队列。请注意,binding配置后有一个bindingConfiguration,说明这个binding需要更高级的配置,相应的配置段在bindings Segment中,由于示例中使用的消息队列没有使用域模式,所以security mode 设为None,该配置会将MsmqAuthenticationMode属性设置为MsmqAuthenticationMode.None。另外,配置中显示的WcfTest专用队列需要被设置为“事务性”,在创建队列的时候可以选择此属性。

配置完成后,我们可以启动MSMQ使用WCF的服务了:

 

  1. ServiceHost serviceHost = new ServiceHost(typeof(Calculator));   
  2. serviceHost.Open();  

 

再来看客户端,非常简单,首先在App.Config中设置“ABC”(与服务端一致):

 

  1. < ?xml version="1.0" encoding="utf-8" ?>   
  2. < configuration>   
  3. < system.serviceModel>   
  4. < client>   
  5. < endpoint name="CalculatorClient"   
  6. address="net.msmq://localhost/private/WcfTest"   
  7. binding="netMsmqBinding" bindingConfiguration="msmq"   
  8. contract="WcfLib.ICalculate">   
  9. < /endpoint>   
  10. < /client>   
  11. < bindings>   
  12. < netMsmqBinding>   
  13. < binding name="msmq">   
  14. < security mode ="None"/>   
  15. < /binding>   
  16. < /netMsmqBinding>   
  17. < /bindings>   
  18. < /system.serviceModel>   
  19. < /configuration>  

 

在添加了对WcfLib.dll的引用后,接下来就可以调用服务了:

 

  1. ChannelFactory< WcfLib.ICalculate> channelFactory =
     
    new ChannelFactory< ICalculate>("CalculatorClient");   
  2. ICalculate calculate = channelFactory.CreateChannel();   
  3. calculate.DealOrder(this.textBox1.Text);  

 

MSMQ使用WCF作为消息传递基础设施后,有这样一个好处,当Internet不可用或者服务端没有启动时,客户端仍然可以调用DealOrder方法将消息发送,当然,消息会暂存在队列中,等网络恢复或服务端启动后,这些队列中的消息将会被处理。

责任编辑:曹凯 来源: 博客园
相关推荐

2010-02-25 09:13:34

WCF异步调用

2010-02-25 10:10:29

WCF使用Header

2010-02-26 11:22:16

LitwareHR使用

2010-02-24 10:07:48

WCF跨越边界

2009-12-21 18:46:50

WCF传输大数据

2010-02-24 10:41:28

WCF服务保护

2010-02-25 13:48:23

WCF动态创建代码

2010-02-25 16:52:12

引用WCF服务

2010-02-26 08:59:10

WCF服务宿主程序

2009-12-21 10:09:26

WCF创建客户端服务对

2010-03-05 16:51:01

Python程序转为E

2010-02-23 09:44:12

WCF dataCon

2010-02-26 10:30:03

ASP.NET Aja

2009-12-22 19:14:36

WCF效率

2010-02-22 16:19:25

WCF自托管

2009-12-21 14:49:27

2009-12-03 11:11:57

PHP网站优化

2010-03-04 15:12:33

Python算法

2009-12-29 18:09:00

Silverlight

2010-03-04 11:12:02

Python AOP
点赞
收藏

51CTO技术栈公众号