Filed under: Biztalk 2004, Biztalk 2006, Configuration, Examples | Tags: Biztalk Server 2004, BizTalk Server 2006, Configuration, Correlation, Debugging, Heath and Activity Tracking, Monitor, Tracking, Tutorial
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…)
Filed under: Biztalk 2004, Biztalk 2006, Configuration, Examples | Tags: Adapter, BizTalk, Biztalk Server 2004, BizTalk Server 2006, Configuration, FileMask, Sendport, Tracking
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…)
Filed under: Biztalk 2004, Examples | Tags: BizTalk, Biztalk Server 2004, Deploy, Labs, Mapping, Re-Deploy, Tutorial
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…)
Filed under: Biztalk 2004, Examples | Tags: BizTalk, Biztalk Server 2004, BTSNTSVS.exe, Labs, SKD, Tutorial
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…)
Filed under: Biztalk 2004, Biztalk 2006, Examples | Tags: BizTalk, Biztalk Server 2004, BizTalk Server 2006, Labs, MSDN, Virtual Labs Express
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…)
Filed under: Biztalk 2004, Examples, Problems | Tags: Accelerator, alliases, BizTalk, Biztalk Server 2004, Covast, EDI, Party
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…)
Filed under: Biztalk 2004, Examples | Tags: BizTalk, Biztalk Server 2004, Correlation, FFDasm, FlatFile
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…)