Click here to Skip to main content
15,883,901 members
Articles / Programming Languages / C#

Using the %SourceFileName% Macro to Create a Custom Send File Name in BizTalk 2004

Rate me:
Please Sign up or sign in to vote.
4.27/5 (5 votes)
22 Mar 2006CPOL4 min read 121K   471   21  
Using the send handler macro to create a custom send file name within BizTalk 2004
��<?xml version="1.0" encoding="utf-16"?>

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

  <xs:element name="Addresses">

    <xs:complexType>

      <xs:sequence>

        <xs:element name="Address">

          <xs:complexType>

            <xs:sequence>

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

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

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

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

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

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

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

            </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
Web Developer
United Kingdom United Kingdom
Currently a Microsoft Developer using an array of MS products ranging from BizTalk and Sharepoint to .NET 2.

Comments and Discussions