Integrating Integrators – BizTalk, Windows Azure, Windows Workflow, and Beyond
Join
Sign in
Search Options
Search Everything
Search BizTalk Blogs
Home
AppFabric
BizTalk Server
Windows Azure
Windows Workflow
Jobs (Hire A Guru)
More ...
Home
»
BizTalk Server
»
BizTalk Blogs
»
Stephen W. Thomas BizTalk MVP
»
October, 2004
October, 2004
BizTalk Blogs
This group is for blogs related to BizTalk Server. This includes Community Syndicated blogs and Stephen W. Thomas’s blog.
Get this RSS feed
Home
Blogs
Sitewide Application Navigation
Home
Blogs
Media
Forums
Wikis
Groups
Options
Email Blog Author
RSS for posts
Monthly Archive List
Archives
May 2013
(1)
April 2013
(4)
March 2013
(1)
February 2013
(2)
December 2012
(1)
November 2012
(4)
October 2012
(6)
September 2012
(6)
July 2012
(1)
May 2012
(2)
April 2012
(1)
February 2012
(1)
January 2012
(1)
September 2011
(1)
August 2011
(3)
March 2011
(1)
February 2011
(2)
January 2011
(1)
December 2010
(1)
November 2010
(2)
October 2010
(4)
September 2010
(3)
August 2010
(2)
October 2009
(1)
June 2009
(1)
May 2009
(1)
April 2009
(5)
February 2009
(1)
January 2009
(1)
December 2008
(1)
November 2008
(4)
October 2008
(3)
September 2008
(1)
May 2008
(1)
April 2008
(2)
March 2008
(3)
February 2008
(3)
January 2008
(1)
December 2007
(3)
November 2007
(4)
October 2007
(2)
September 2007
(2)
July 2007
(1)
May 2007
(2)
April 2007
(1)
December 2006
(3)
November 2006
(2)
October 2006
(2)
September 2006
(5)
August 2006
(5)
July 2006
(5)
April 2006
(4)
March 2006
(4)
February 2006
(1)
January 2006
(2)
December 2005
(3)
November 2005
(3)
October 2005
(5)
September 2005
(9)
August 2005
(9)
July 2005
(7)
June 2005
(7)
May 2005
(1)
April 2005
(6)
March 2005
(3)
February 2005
(4)
January 2005
(3)
December 2004
(2)
November 2004
(3)
October 2004
(8)
September 2004
(5)
August 2004
(7)
July 2004
(4)
Tags
Applied Architecture Patterns on the Microsoft Platform
Azure
biztalk
biztalk 2004
biztalk 2006
BizTalk 2009
BizTalk 2013
biztalk book
biztalk errors
Biztalker
Book
Contest
convoy
debatching
deployment
flat files
maps
orchestration
pipelines
schema
testing
Virtual Machines
Window Azure
Windows Azure Virtual Machines
Workflow 4
Stephen W. Thomas BizTalk MVP
Insight and guidance on BizTalk, AppFabric, and related Microsoft technologies.
RSS for posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Stephen W. Thomas BizTalk MVP
How To Create Nodes from Flat Data in BizTalk Maps
Posted
over 9 years ago
by
Stephen W. Thomas
1
Comments
It can sometimes be challenging when mapping schemas in BizTalk 2004. One common problem is when the inbound document has one record and the source creates multiple records based on the data inside your single record. The root problem arises because you have nothing to loop around in the inbound document and need to create multiple nodes on the output. How can this be handled in the mapper? Two ways: Functoids or XSLT Template BizTalk 2004 introduces a new Functoid just for this situation. It is...
Stephen W. Thomas BizTalk MVP
Using XPath Inside BizTalk Orchestrations
Posted
over 9 years ago
by
Stephen W. Thomas
8
Comments
Working with XPath inside Orchestrations is a powerful and simple feature of BizTalk 2004. The help guide does a good job describing the process (under Using XPath in Message Assignment). I have found that the XPath queries can only be done against a Message and the results can be set to a Message, XML Document or other orchestration variables. XPath queries can also be executed against untyped messages. That is, a Message that is of type System.Xml.XmlDocument. CRITICAL: BizTalk xpath can be used...
Stephen W. Thomas BizTalk MVP
How To Assign an InfoPath Form to a Message in BizTalk
Posted
over 9 years ago
by
Stephen W. Thomas
0
Comments
InfoPath is something I heard a lot about several months ago, but not much since then. Recently, I had to set an InfoPath template to a message in BizTalk 2004. This is something that is rather simple, as long as you know what properties you need to set. To set an InfoPath template for use on an outgoing message just use this code inside the Message Assignment shape. This is set up to use an InfoPath template that has been deployment to a Sharepoint site. Other options are a Web Server or File Location...
Stephen W. Thomas BizTalk MVP
How to Allow Unrecognized Messages on Send Ports Using Message Context
Posted
over 9 years ago
by
Stephen W. Thomas
0
Comments
Have you seen an error that looks like the one below on your Send Pipelines? There was a failure executing the send pipeline: "Microsoft.BizTalk.DefaultPipelines.XMLTransmit" Source: "XML assembler" Send Port: "some location" Reason: This Assembler cannot retrieve document specification by using this type: "namespace#rootnode". This is caused by not having a unique combination of namespace and root node (MessageType). BizTalk by default does not like unrecognized messages. The XML Disassembler has...
Stephen W. Thomas BizTalk MVP
Using Delivery Notification with Send Port Groups
Posted
over 9 years ago
by
Stephen W. Thomas
0
Comments
I found out tonight that Delivery Notification set to Transmitted works differently for Send Groups. In the case of Send Groups, no NACK is returned if any of the Send Ports in the group fails.
Stephen W. Thomas BizTalk MVP
Property Promotion and Demotion in BizTalk
Posted
over 9 years ago
by
Stephen W. Thomas
0
Comments
I think most BizTalk users have some idea about what Property Promotion is. I would say Property Promotion is the process of taking message or system data and putting it into the message context. The tricky part is when and how properties get promoted. The items that are promoted using a property schema attached to your schema are promoted in the pipelines. When and how the system properties are promoted is somewhat of a mystery. I think some items are promoted in the adapters (like the specific...
Stephen W. Thomas BizTalk MVP
Role Links in BizTalk Server 2004
Posted
over 9 years ago
by
Stephen W. Thomas
0
Comments
Make sure you check out Todd Uhl’s Blog . He has a sample working with Role Links in BizTalk 2004. This is something I had not looked into yet but his sample makes it look easy and useful. Todd is working on the Tech Arch team on my current project. Watch for more great deployment and architecture posts from him in the near future.
Stephen W. Thomas BizTalk MVP
Parallel Sequential Convoy in BizTalk Server 2004
Posted
over 9 years ago
by
Stephen W. Thomas
0
Comments
Here is another sample of a Sequential Convoy in BizTalk 2004. This is a little different then most, it contains a Parallel Action shape that allows for concurrent parallel processing of inbound messages. What does this accomplish? It is all about control. This process allows for processing a pre-defined number of messages at the same time in a controlled manner. Performance? Ok, it is not the fasting running Orchestration I have ever seen. Actually, in some of my tests this parallel action processed...
Page 1 of 1 (8 items)