Native serialization error Root element is missing Map Error
Recently I was testing a BizTalk map inside Visual Studios. The input schema was auto generated using the SQL Adapter and the output was a simple text file. I was using a sample file provided to me from a past generation from the schema (or so I thought) to test the...
How to Split Received Email Attachments in BizTalk 2006
This was a question (paraphrased) on the BizTalkGurus.com Forum: “How can I take email attachments and put them as is into a folder?” When using the POP3 Receive Adapter, you have the ability to receive multiple items as attachments and the adapter will...
How To Build and Deploy BizTalk Solutions Using MSBuild
MSBuild is the new build platform for Visual Studios. It allows great flexibility, customization (through creating custom Tasks), and integration with unit tests. While MSBuild doesn’t directly support building BizTalk solutions, tasks are available to call the...
Free BizTalk 2006 Training On CDROM
AppDev Training is offering a free CD Training Class! They have many great courses to pick from including a new Microsoft BizTalk Server 2006 course called “Exploring BizTalk Server 2006”. If you are new to BizTalk 2006, this looks like it would be an...
How To Add BizUnit Snippets Into Visual Studios 2005
Recently I have been working a lot with BizUnit 2.0 (Available on GotDotNet). This framework provides an easy and customizable way to unit test your end to end BizTalk solutions. I’ll not get into details about BizUnit right now since this post is focused on...
How To Receive SQL XML Data Into BizTalk Server 2006
SQL Server 2005 offers many exciting new features. One of them is the support for Xml as a data type. On the surface, this looks great since BizTalk likes Xml. But, we come to learn that the Xml Data Type is not supported using the SQL Adapter inside BizTalk. But,...
Update Documentation for BizTalk 2006 Now Available
A few weeks ago Microsoft released an updated version of the documentation for BizTalk 2006. You can download the updated docs here. The new content has some really good stuff including: - Complete documentation for all BizTalk Server Line of Business Adapters,...
Working with Enterprise Library Logging Categories in BizTalk
First off, it has been a long time since I’ve last blogged. I have been very busy working on some other endeavors and I was on vacations for a few weeks. I am now working on some new blog posts and samples so I can get back into the swing of things. Recently, I...
New BizTalk Adapters for WSE 3, SalesForce.com, and SQL Service Broker
Wow, the guys at Two Connect have been very busy. They have released three new adapters for BizTalk Server 2006. They are: SalesForce.com (integrated with them in the past through .net as a BizTalk Adapter would be great) Web Services Enhancements (WSE) 3.0 SQL Server...
New BizTalk User Group in Bangalore – India
I just wanted to help get the word out about the BizTalk User Group in Bangalore India. It was set up and ran by MVP Lakshmi Murthy It looks like she has a lot of great things planned including contests with prizes! Get more information at the BizTalk User Group India...
How to Get Message Context Values Inside a Map
Carlos Medina has created a functoid that can be used to extract context values from a message inside a map! This is a very common problems and this approach is something I didn’t really consider. Make sure you check out his post. He has sample code and the...
How To Use BizTalk Messaging for Grouping, Sorting, and Debatching
In a past edition of The BizTalker, I talked about how easy it is to use custom XSLT inside the BizTalk Mapper to sort data. Sorting data inside the map can be doing using inline XSLT like this: <xsl:for-each select="Record"> <xsl:sort select="Id"...