zoukankan      html  css  js  c++  java
  • BizTalk: PublisherSubscriber model and Binding

    Publisher-Subscriber model

    Receive ports are publishers. They pick up data from somewhere based on the adapter and the URI, and then pass it through a pipeline and maybe a map and then eventually give it to the messageagent and say “Publish this for me, please.” (our engines are very polite and always say please). To clear up confusion, data is persisted to the messagebox after the pipeline and after the map, not before.

    接收端口接收消息,然后处理消息并发布到 MessageBox。BizTalk Server 将这些消息路由到订阅业务流程或发送端口,订阅业务流程或发送端口进一步处理这些文档,并将它们重新发布到 MessageBox 或发送到外部系统。


    The Binding = the Implicit Subscription

    This Subscription for Binding is created under scene, when the Publishers ID is used as the Filter expression in the most cases. The link via binding is not required; it can be created by an explicit filter expression.
    “Binding” the term is used for describing the direct link between an Orchestration and a Port. As I understand this term was created for simplifying the model by hiding the additional work with creating the most frequently used operation, transferring the messages from one point exactly to the second one. Binding creates the One-to-One link when the messages from one Publisher must come to the one Subscriber and only to this Subscriber. Binding make a step from “pure” Publisher-Subscriber model where the Publishers and the Subscribers do know nothing about each other and have not to know.

    References:
    1. BizTalk messaging model, http://geekswithblogs.net/leonidganeline/archive/2006/12/18/101541.aspx
    2. Is there a pub/sub system underneath BizTalk?, http://blogs.msdn.com/Biztalk_Core_Engine/archive/2004/07/22/191888.aspx



     

  • 相关阅读:
    CCF 201712-4
    图论_最短路径
    图论_查并集
    let和const
    Promise
    实现表单label两端对齐
    始终让footer在底部
    react——使用this.setState({ })修改state状态值
    react——css样式
    react脚手架
  • 原文地址:https://www.cnblogs.com/rickie/p/719459.html
Copyright © 2011-2022 走看看