WCF 第四章 绑定 msmqIntegrationBinding

系统 1556 0

msmqIntegrationBinding 绑定用来在一个WCF应用程序和一个直接利用MSMQ的应用程序间通信-比如,使用System.Messaging.这允许开发人员利用WCF同时也使用他们已有的MSMQ应用程序。msmqIntegrationBinding绑定允许MSMQ消息映射到WCF消息。这通过在MsmqMessage类中对MSMQ消息包装来实现的。类位于System.ServiceModel.MsmqIntegration命名空间里。实例可以使用单向契约被发送或接收。

   下面的代码显示了msmqIntegrationBinding绑定的地址格式:

   msmq.formaname:{MSMQ format name}

   MSMQ地址格式不需要端口来确定。然后,MSMQ需要打开特定端口,比如1801.表4.12显示了msmqIntegrationBinding绑定的可以配置的属性。

表4.12 msmqIntegrationBinding绑定属性

WCF 第四章 绑定 msmqIntegrationBinding

  WCF 第四章 绑定 msmqIntegrationBinding

 列表4.30 显示了使用msmqIntegrationBinding绑定暴露一个服务的最小配置

 列表4.30 msmqIntegrationBinding 宿主配置

      <?xml version="1.0" encoding="utf-8" ?>

<configuration> 

 <system.serviceModel>   

  <services>      

   <service name="EssentialWCF.StockQuoteRequestService">        

   <endpoint address="msmq.formatname:DIRECT=OS:.\private$\stockquoteresponse"            

          binding="msmqIntegrationBinding"            

          contract="EssentialWCF.IStockQuoteRequest" />      

   </service>    

  </services>  

</system.serviceModel></configuration>


    

调用由msmqIntegrationBinding绑定生成的服务的最小配置在列表4.31中显示

   列表4.31 msmqIntegrationBinding 客户端配置

      <?xml version="1.0" encoding="utf-8" ?>

<configuration>  

  <system.serviceModel>    

  <services>      

   <service name="EssentialWCF.HelloWorld">        

   <endpoint address="msmq.formatname:DIRECT=OS:.\private$\stockquoteresponse"            binding="msmqIntegrationBinding"            

   contract="EssentialWCF.IStockQuoteRequestService" />      

   </service>    

  </services>  

</system.serviceModel></configuration>


    

WCF 第四章 绑定 msmqIntegrationBinding


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论