I was looking into the options for upgrading BizTalk Server 2006 applications to BizTalk Server 2009, and came across this great BizTalk Server 2009 Upgrade Migration Chart.
Link: BizTalk Server 2009 Upgrade Migration Chart
I was looking into the options for upgrading BizTalk Server 2006 applications to BizTalk Server 2009, and came across this great BizTalk Server 2009 Upgrade Migration Chart.
Link: BizTalk Server 2009 Upgrade Migration Chart
Recently I ran into an installation problem with BizTalk Server 2009 and the ESB Toolkit 2.0 on a 64-bit Windows 2008 R2 server. There are two issues to deal with here:
Microsoft, BizTalk, BizTalk Server 2009, ESB Toolkit 2.0, Windows Server 2008 R2
The BizTalk ESB Architecture Poster is now available from the Microsoft Download Center.
Link: BizTalk ESB Toolkit Architecture Poster
Microsoft, BizTalk, BizTalk Server 2009, ESB Toolkit, Microsoft Download Center
With the announcement that BizTalk Server 2009 R2 is being renamed to BizTalk Server 2010, there is an impact on the ESB Toolkit 2.0 component. The ESB Toolkit 2.0 has a dependency on Visual Studio 2008. However, BizTalk Server 2010 will only support Visual Studio 2010, meaning that the ESB Toolkit 2.0 component won’t function. As a result the ESB Toolkit will be updated to version 2.1 and will be released in conjunction with BizTalk Server 2010.
Microsoft, BizTalk, BizTalk Server 2010, ESB, ESB Toolkit 2.1
Microsoft announced that the upcoming release of BizTalk Server 2009 R2 will be renamed to BizTalk Server 2010. Why was this done – well, Microsoft says that initially the release was meant to provide support for Windows Server 2008 R2, SQL Server 2008 R2 and Visual Studio 2010. Since then they have included a key features, thereby expanding on the scope of the release. These features include:
One benefit customers will see is the support window being reset to 10 years (5 years mainstream and 5 years extended support).
Microsoft BizTalk Server 2006 R2 Service Pack 1 is available for download. Included in this service pack are the following key (in my opinion) fixes:
To download the service pack and see a full list of implemented fixes and enhancements follow this link: BizTalk Server 2006 R2 Service Pack 1
While working on an BizTalk EDI project, I needed to count dependents on 834 documents. What made this difficult was that the document would contain users and their dependents intermittently. I could have a user with no dependents followed by one with three. I wanted to be able to count the dependents so that I can make some logical decisions during the orchestration. I ended up using an Inline XSLT Call Template to implement the transformation.
The map called a Scripting functoid as shown below:
The transformation script I used looks as follows:
<xsl:template name="Dependents">
<xsl:param name="parIsEmp" />
<xsl:param name="parEmpID" />
<xsl:element name="Dependents">
<xsl:if test="$parIsEmp = ‘N’">
<xsl:text>0</xsl:text>
</xsl:if>
<xsl:if test="$parIsEmp = ‘Y’">
<xsl:call-template name="CountDependents">
<xsl:with-param name="par_EmpID" select="$parEmpID" />
</xsl:call-template>
</xsl:if>
</xsl:element>
</xsl:template>
<xsl:template name="CountDependents">
<xsl:param name="par_EmpID" />
<xsl:value-of select="count(//s0:INSLoop1/s0:INS/INS01[$par_EmpID = ../../s0:REF_3/REF02/text() and 'Y' != ../../s0:INS/INS01/text()])" />
</xsl:template>
On Monday Microsoft announced the release of the next version of the ESB Toolkit (renamed from the ESB Guidance). The toolkit and it’s documentation is available for download, there is a ESB Toolkit MSDN site as well as a forum.
The ESB Toolkit 2.0 provides key building blocks required for implementing a service-oriented infrastructure (SOI) including:
For more information, see SOA and Web Services section in the New Features in BizTalk 2009 Web page.
Links:
ESB Toolkit 2.0
Documentation
MSDN ESD Toolkit site
ESB Toolkit Forum
Microsoft, BizTalk, BizTalk Server, BizTalk Server 2009, SOA, Service Oriented Architecture, SOI, Service Oriented Infrastructure, ESB, Enterprise Service Bus
Microsoft released BizTalk Server 2009. New features in BizTalk include the following:
Interestingly, the following BizTalk 2006 features were replaced in BizTalk 2009:
Links
A 120 day trial of BizTalk Server 2009
Detailed feature list of BizTalk Server 2009
Published earlier this month is the BizTalk Server 2009 Technical Overview. This word document is a technical overview providing a guided tour of BizTalk Server 2009. It includes the important features and business benefits that BizTalk Server provides and contains a detailed primer on how developers, administrators, and business users use BizTalk Server to develop and manage business process solutions.
Recent Comments