BizTalk Experts


Promoted and Distinguished Fields

You can access an attribute or element in two different ways within Biztalk using ‘Distinguished Fields’ and ‘Promoted Properties’. A basic rule for ‘which to use’ would be: Always use a Distinguished Field, unless you need to route, track, or correlate on the content, then use promoted fields. (more…)



FileMask Macros in Biztalk

It’s possible to set the filename of a messages that your are going to send out in the orchestration. Just set the  ‘ReceivedFileName’ context property of the outbound messages that you created.

This should look like this:
OutboundMessage(FILE.ReceivedFileName) = "TheNewFancyFileName.xml";

After this you have to set the filemask in the sendport to %SourceFileName% (it’s case sensitive). The %SourceFileName% macro does not need an additional extension (like .xml or .txt) after it like the %MessageId% macro. (more…)



Using C# instead of using BizTalk Visual Mapper
February 24, 2009, 10:02 am
Filed under: Biztalk 2004, Examples | Tags: , , , , , ,

The visual mapper of BizTalk that allows you to map an xml message to another xml message can be very handy when we’re talking about little xml files, but when you need to map a bigger xml file it gets very unstructured and difficult to maintain! (more…)



BizTalk Server 2004 Tutorials
February 20, 2009, 1:02 pm
Filed under: Biztalk 2004, Examples | Tags: , , , , ,

The tutorials explain how to automate business processes within your company and among business partners, how to use Web services, and how to implement trading partner management and monitor business activities. (more…)



BizTalk Server Virtual Labs

Start your BizTalk Server 2004 and 2006 experience with checking out all the virtual labs on MSDN. These labs really helps you to understand BizTalk Server.  Virtual Lab Express is the fastest and easiest way to test drive Microsoft products and the Virtual Lab environment. These are 30-minute hands-on overviews of some of your favorite Microsoft products and developer tools. Try them out on-line now – no need to download full trial versions or dedicate test machines (more…)



Adding Party Definitions for Covast without Visual Studio
February 17, 2009, 4:30 pm
Filed under: Biztalk 2004, Examples, Problems | Tags: , , , , , ,

So you need to make a trading party with a Covast party EDI alias but you don’t have Visual Studio to configure Biztalk, but only the BizTalk explorer tool, your going to have a problem setting more dan Organization name to the party.

When you have your party created (with only the Organization name as a allias), run the next query with a Query Analyzer on the Biztalk database. (more…)



Using Correlation in a sequential convoy
February 17, 2009, 2:56 pm
Filed under: Biztalk 2004, Examples | Tags: , , , ,

Problem
The problem is that I’m receiving a header and a detail file (both are flatfiles) in the same directory with different filenames and I need to merge those two files together and transform it into our standard xml format.

Solution
After some thinkwork I decided to create two pipeline components and two inbound xsd-schemas to disassemble the inbound message into xml files. With this solution it does not matter if we receive the header of detail first. We just wrap it in one Wrapper xml and passes it to the orchestration. (more…)