Click here to Skip to main content
15,884,176 members
Articles / Productivity Apps and Services / Biztalk

BizUnit 4.0 and BizTalk 2010 - Simple Orchestration

Rate me:
Please Sign up or sign in to vote.
4.85/5 (17 votes)
18 Feb 2014CPOL9 min read 64.5K   1.2K   11  
This article will demonstrate how to use BizUnit 4.0 to unit test a simple orchestration in BizTalk 2010.
��<?xml version="1.0" encoding="utf-16"?>

<xs:schema xmlns="http://Timewave.BizTalkUnit.Sample.SourceSchema" xmlns:b="http://schemas.microsoft.com/BizTalk/2003" targetNamespace="http://Timewave.BizTalkUnit.Sample.SourceSchema" xmlns:xs="http://www.w3.org/2001/XMLSchema">

  <xs:element name="CustomerOrder">

    <xs:complexType>

      <xs:sequence>

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

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

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

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

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

        <xs:element name="OrderLines">

          <xs:complexType>

            <xs:sequence>

              <xs:element minOccurs="1" maxOccurs="unbounded" name="Line">

                <xs:complexType>

                  <xs:sequence>

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

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

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

                  </xs:sequence>

                </xs:complexType>

              </xs:element>

            </xs:sequence>

          </xs:complexType>

        </xs:element>

      </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 Timewave Technologies Ltd
United Kingdom United Kingdom
I graduated from Sussex University in 1994 after spending 3 years studying Computing and Artificial Intelligence for a BA(Hons).

My first job was with a consultancy company programming in VB3 with SQL Server 4.21. During my time with that consultancy Java was released and I spent my own time learning it. I left after 3 years to start in business on my own. I spent a while providing VB and Java consultancy. I then moved into C# when .Net was first released and started working with BizTalk in 2004.

In 1997 I founded Timewave Technologies Ltd, a small consultancy providing solutions to all sizes of organisations in all areas of development and integration.

I have a passion for BizTalk and all things Integration related. I also have a few apps on the WP7 marketplace.

Comments and Discussions