zoukankan      html  css  js  c++  java
  • Distinguished Fields vs. Promoted Properties in Biztalk

    Distinguished Fields vs. Promoted Properties in Biztalk

    Both can be used to promote elements and attributes.

    1. Distinguished fields
    In general use Distinguished fields if you want to just use them in Orchestration

    Summary
    - No restriction on field length
    - No participation in Routing
    - No seperate property Schema
    - Not accesible by standard pipeline components
    - Not support to promote values in a record

    2. Promoted Properties

    These are generally used with Routing.

    Summary
    - Used in publish and subscribe in the Msgbox
    - Field Restictions ( 255)
    - Seperate Property schema
    - Restricted in the XSD types support compared to distinguished properties
    - can be used on records with Simple Content type

    ThumbRule
    Use Distinguish properties as they are lightweight unless you need them for any special stuff like Routing,

    Tracking, Correlation or custom pipeline behavior.

    SOURCE URL:
    http://biztalkland.blogspot.com/2005_03_27_biztalkland_archive.html
    ***

    Some tips on Biztalk:
    (1) In which scenarios would use a "promoted property" vs "distinguished fields"?
    The rule here is, if you dont want the schema element to appear in send port filters/debugging information

    then make it a distinguished field.

    (2) How does one enable subscriptions in BizTalk?
    A filter on the Send Port is the first step to enable subscriptions in BizTalk.

    (3) Is it necessary for all .NET components being called from an Orchestration be Serializable?
    Yes it is necessary. There are cases where a .NET component need not be Serializable.

    (4) How does one enable Correlations in BizTalk?
    First create a Correlation type and then create an instance of it.

    (5) List out the three important things to consider while designing a BizTalk orchestration!
    The Incoming data format, The Business process and The Outgoing data format.


    SOURCE URL:
    http://www.codeproject.com/useritems/BizTalkInterviewQuestions.asp

  • 相关阅读:
    webpack详解
    扩展运算符及其在vuex的辅助函数里的应用详解
    react组件间传值详解
    类的构造函数(3)
    类构造函数(4)
    new delete
    类的构造函数(1)
    类的构造函数(2)
    类的继承(1)
    静态成员数据与函数
  • 原文地址:https://www.cnblogs.com/rickie/p/596077.html
Copyright © 2011-2022 走看看