Click here to Skip to main content
15,892,517 members
Articles / Programming Languages / XSLT

Table Looping and Table Extractor Functoids

Rate me:
Please Sign up or sign in to vote.
4.33/5 (6 votes)
17 Dec 2009CPOL2 min read 54.9K   446   8  
Article describing how to use the table looping and table extractor functoids in BizTalk maps
��<?xml version="1.0" encoding="utf-16"?>

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

  <xs:element name="FlatLoan">

    <xs:complexType>

      <xs:sequence>

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

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

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

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

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

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

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

        <xs:element name="Borrower2SSN" 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
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions