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
»
August, 2006
August, 2006
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
June 2013
(2)
May 2013
(2)
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 errors
Biztalker
Book
Contest
convoy
debatching
deployment
maps
orchestration
Oslo
pipelines
rules engine
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
Simple Script to Terminate All Orchestration Instances
Posted
over 7 years ago
by
Stephen W. Thomas
5
Comments
Tired of having to go into BizTalk Server Admin and terminate any suspended Orchestration instance before you want to redeploy? Scripting this task is very simple using WMI. Just create a file called Terminate.vb and copy in this code: TerminateAllOrchs Sub TerminateAllOrchs Query = "SELECT * FROM MSBTS_ServiceInstance where ServiceClass = 1" Set InstSet = GetObject("Winmgmts:!root\MicrosoftBizTalkServer").ExecQuery(Query) For Each Inst In InstSet Inst.Terminate Next End Sub Running...
Stephen W. Thomas BizTalk MVP
How to Auto-GAC your BizTalk Helper Classes on a Successful Build
Posted
over 7 years ago
by
Stephen W. Thomas
0
Comments
Working with helper .net classes with BizTalk is a common task. Sometimes it can be easy to forget to GAC the latest version of the code when you go to test the solution on your local development box. With a simple Post Build Event, you can have your code automatically put in the GAC for you. Adding the post build event is easy. Just go to the project properties of your helper class and select Build Events. Enter the following under Post Build Event: "C:\Program Files\Microsoft Visual Studio...
Stephen W. Thomas BizTalk MVP
Native serialization error Root element is missing Map Error
Posted
over 7 years ago
by
Stephen W. Thomas
0
Comments
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 map. When I was testing, I keep getting a blank file as output and a strange error. The error was: Native serialization error: Root element is missing. I had both input and output validation turned on and the input sample file was passing...
Stephen W. Thomas BizTalk MVP
How to Split Received Email Attachments in BizTalk 2006
Posted
over 7 years ago
by
Stephen W. Thomas
6
Comments
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 handle them using MIME processing. You do not need a custom pipeline. When receiving a multi-attachment message, you have the ability to define one of the parts as the main message Body. If you leave the default (0), the email message...
Stephen W. Thomas BizTalk MVP
How To Build and Deploy BizTalk Solutions Using MSBuild
Posted
over 7 years ago
by
Stephen W. Thomas
2
Comments
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 DEVENV executable and Microsoft UK has released a set of custom tasks to support a wide verity of common BizTalk tasks (available on GotDotNet ). This provided an easy method for scripting automated or ad-hock BizTalk builds and deployments...
Page 1 of 1 (5 items)