Click here to Skip to main content
15,881,852 members
Articles / Programming Languages / C#

BizTalk Enterprise Integration Patterns - Part 1

Rate me:
Please Sign up or sign in to vote.
3.40/5 (6 votes)
25 Apr 2006CPOL3 min read 47.6K   23  
This article explains the Content Enricher pattern of Message Oriented Systems for BizTalk Server 2004.
��<?xml version="1.0" encoding="utf-16"?>

<xs:schema xmlns="http://ContentEnricherPattern.OrderForm" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" targetNamespace="http://ContentEnricherPattern.OrderForm" xmlns:xs="http://www.w3.org/2001/XMLSchema">

  <xs:element name="OrderInfo">

    <xs:annotation>

      <xs:appinfo>

        <b:properties>

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='PartNo' and namespace-uri()='']" />

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='PartName' and namespace-uri()='']" />

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='QuantityRequired' and namespace-uri()='']" />

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='ManufacturerId' and namespace-uri()='']" />

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='ManufacturerName' and namespace-uri()='']" />

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='GroupId' and namespace-uri()='']" />

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='CategoryId' and namespace-uri()='']" />

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='PatentNo' and namespace-uri()='']" />

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='DesignNo' and namespace-uri()='']" />

          <b:property distinguished="true" xpath="/*[local-name()='OrderInfo' and namespace-uri()='http://ContentEnricherPattern.OrderForm']/*[local-name()='SupplierId' and namespace-uri()='']" />

        </b:properties>

      </xs:appinfo>

    </xs:annotation>

    <xs:complexType>

      <xs:sequence>

        <xs:element name="PartNo" type="xs:string" />

        <xs:element name="PartName" type="xs:string" />

        <xs:element name="QuantityRequired" type="xs:string" />

        <xs:element name="ManufacturerId" type="xs:string" />

        <xs:element name="ManufacturerName" type="xs:string" />

        <xs:element name="GroupId" type="xs:string" />

        <xs:element name="CategoryId" type="xs:string" />

        <xs:element name="PatentNo" type="xs:string" />

        <xs:element name="DesignNo" type="xs:string" />

        <xs:element name="SupplierId" type="xs:string" />

      </xs:sequence>

    </xs:complexType>

  </xs:element>

</xs:schema>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect AT&T Wi-Fi Services
United States United States
Naveen has done his Masters (M.S.) in Computer science, has started his career programming the mainframes and now has more than a decade of programming, development and design experience. Naveen has a sharp eye and keen observation skills. Naveen has worked for several companies and strived hard to build large scale business applications and bringing better solutions to the table.
Quite recently Naveen has built a fairly complex integration platform for a large bank. His hobbies include training, mentoring and research. Naveen spends his free time visiting National Parks nationwide.

Naveen has developed the BizTalk Control Center (BCC)
http://biztalkcontrolcenter.codeplex.com

Comments and Discussions