zoukankan      html  css  js  c++  java
  • WCF 第四章 绑定 msmqIntegrationBinding

    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绑定属性

     

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

     列表4.30 msmqIntegrationBinding 宿主配置

    01<?xml version="1.0" encoding="utf-8" ?>
    02<configuration>
    03 <system.serviceModel>  
    04  <services>     
    05   <service name="EssentialWCF.StockQuoteRequestService">       
    06   <endpoint address="msmq.formatname:DIRECT=OS:.\private$\stockquoteresponse"           
    07          binding="msmqIntegrationBinding"           
    08          contract="EssentialWCF.IStockQuoteRequest" />     
    09   </service>   
    10  </services> 
    11</system.serviceModel></configuration>

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

       列表4.31 msmqIntegrationBinding 客户端配置

    01<?xml version="1.0" encoding="utf-8" ?>
    02<configuration> 
    03  <system.serviceModel>   
    04  <services>     
    05   <service name="EssentialWCF.HelloWorld">       
    06   <endpoint address="msmq.formatname:DIRECT=OS:.\private$\stockquoteresponse"            binding="msmqIntegrationBinding"           
    07   contract="EssentialWCF.IStockQuoteRequestService" />     
    08   </service>   
    09  </services> 
    10</system.serviceModel></configuration>


    =======

    转载自

     

  • 相关阅读:
    图解 Kubernetes
    如何构建可伸缩的Web应用?
    2020年软件开发趋势
    3种基础的 REST 安全机制
    为什么你应该使用 Kubernetes(k8s)
    Elasticsearch:是什么?你为什么需要他?
    你在使用什么 Redis 客户端工具?
    ZooKeeper 并不适合做注册中心
    Jmeter(三)_配置元件
    Jmeter(二)_基础元件
  • 原文地址:https://www.cnblogs.com/llbofchina/p/2093027.html
Copyright © 2011-2022 走看看