BizTalk Server 2004 Technical Guides and Resources

Microsoft has made available a variety of technical guides for deployment, migration, security and performance/capacity planning.  They are aimed primarily at BizTalk Administrators and developers, and cover a wide range of the develop-deploy life cycle. The guides are available on MSDN at:
http://msdn.microsoft.com/BPI/TechGuides/default.aspx

In various travels, I’ve come across a series of other BizTalk resources:

Main Public Website
http://www.microsoft.com/biztalk/

Product Documentation
http://www.microsoft.com/biztalk/techinfo/productdoc/2004/default.asp

BizTalk Server 2004 Installation Guide
http://www.microsoft.com/downloads/details.aspx?FamilyId=32FF7D19-9E25-44CE-8A8C-03E3EB5D726F&displaylang=en

MSDN Product Documentation
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/def/htm/ebiz_def_portal_page.asp

Adapters – General
http://www.microsoft.com/biztalk/evaluation/adapter/default.asp

Security Recommendations for BizTalk Server Components
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/deploying/htm/ebiz_depl_secure_wtti.asp

Case Studies
http://www.microsoft.com/biztalk/evaluation/casestudies/default_2004.asp

White Papers
http://www.microsoft.com/biztalk/techinfo/whitepapers/2004/default.asp

Microsoft BizTalk Server Newsgroups
http://communities.microsoft.com/newsgroups/default.asp?icp=Biztalk&slcid=us

Scott Woodgate – Microsoft Product Manager
http://blogs.msdn.com/scottwoo

QuickStart Guide to Learning BizTalk Server 2004
http://blogs.msdn.com/luke/articles/380519.aspx

BizTalk Server 2004 Tutorials
http://www.microsoft.com/downloads/details.aspx?familyid=9C64562C-3FA7-49BA-885E-82213D00776E&displaylang=en

Modifying File Names in BizTalk Send Adapters

There are times you’ll want to control the name of a message as it’s saved to disk (default is GUID).  The question arose if promoted properties were allowed; a link to this is presented below the bullets.  Thanks to Todd Uhl for providing this.

  • %datetime_bts2000%: UTC date time in format YYYYMMDDhhmmsss, where sss means seconds and milliseconds (e.g. 199707121035234 means 1997/07/12, 10:35:23 and 400 milliseconds)
  • %datetime%: UTC date time in format YYYY-MM-DDThhmmss (e.g. 1997-07-12T103508)
  • %datetime.tz%: Local date time + time zone from GMT in format YYYY-MM-DDThhmmssTZD, (e.g. 1997-07-12T103508+800)
  • %time%: UTC time in format hhmmss
  • %time.tz%: Local time + time zone from GMT in format hhmmssTZD (e.g. 124525+530)%DestinationParty%: Name of the destination party. The value comes from message the context property BTS.DestinationParty.
  • %DestinationPartyID%: Identifier of the destination party (GUID). The value comes from the message context property BTS.DestinationPartyID.
  • %DestinationPartyQualifier%: Qualifier of the destination party. The value comes from the message context property BTS.DestinationPartyQualifier
  • %SourceFileName%: Name of the file from where the File adapter read the message. The file name includes extension and excludes the file path, for example, foo.xml. When substituting this property, the File adapter extracts the file name from the absolute file path stored in the FILE.ReceivedFileName context property. If the context property does not have a value, for example, if message was received on an adapter other than File adapter, then the macro will not be substituted and will remain in the file name as is (for example, C:\Drop\%SourceFileName%).
  • %SourceParty%: Name of the source party from which the File adapter received the message.
  • %SourcePartyID%: Identifier of the source party (GUID). The value comes from the message context property BTS.SourcePartyID
  • %SourcePartyQualifier%: Qualifier of the source party from which the File adapter received the message.

The following link points to a blog presenting two ways to use a promoted property as a file name: http://geekswithblogs.net/sthomas/archive/2004/11/13/14949.aspx