August 14, 2009
If you ever wanted to know how to use any other file name macros other than %MessageID% here they are:
%datetime% Coordinated Universal Time (UTC) date time in the format YYYY-MM-DDThhmmss (for example, 1997-07-12T103508).
%datetime_bts2000% UTC date time in the format YYYYMMDDhhmmsss, where sss means seconds and milliseconds (for example, 199707121035234 [...]
Filed by Paul Gu at August 14th, 2009 under BizTalk, Programming
No comments on this post yet
June 12, 2009
Windows XP with service pack 2 has features that will make installing BizTalk ‘fun’, but it obviously can be done. Here is a short version of what I did to get it running right in the first three times. This install will account for a fairly minimum install of BizTalk for core development purposes and [...]
Filed by Paul Gu at June 12th, 2009 under BizTalk
No comments on this post yet
February 18, 2009
The code below expects to execute on the machine its querying for.
Code:
‘
‘ WMI script to get list of BizTalk host instance with specific status
‘
‘ MSBTS_HostInstance.ServiceState valid values
‘
‘Stopped: 1
‘Start pending: 2
‘Stop pending: 3
‘Running: [...]
Filed by Paul Gu at February 18th, 2009 under BizTalk, Programming
No comments on this post yet
February 13, 2009
There are two tools that I recommend here.
The first is the BizTalk 2004 Explorer Extension.
The extension is the BtsAsmExt.dll and is located in the \Program Files\Microsoft BizTalk Server 2004\Developer Tools subdirectory. This functionality is turned off by default (which is why most people don’t know about it). To enable this functionality, run regsvr32 BtsAsmExt.dll either [...]
Filed by Paul Gu at February 13th, 2009 under BizTalk, Programming
No comments on this post yet
February 10, 2009
Execution of the BizTalk Server SQL Agent jobs are crucial for managing the BizTalk Server databases and for maintaining optimal performance. The Backup BizTalk Server job is the only supported method to backup the BizTalk Server databases and requires that all of the BizTalk Server databases are configured to use the SQL Server full recovery [...]
Filed by Paul Gu at February 10th, 2009 under BizTalk, Database
2 persons have commented this post
February 9, 2009
As BizTalk Server processes more and more data on your system, the BizTalk Tracking (BizTalkDTADb) database continues to grow in size. Unchecked growth decreases system performance and may generate errors in the Tracking Data Decode Service (TDDS). In addition to general tracking data, tracked messages can also accumulate in the MessageBox database, causing poor disk [...]
Filed by Paul Gu at February 9th, 2009 under BizTalk, Database, Programming
No comments on this post yet
February 6, 2009
In BizTalk Server 2004, sometime we need to update host for a send handler, the script below will do the job.
Option Explicit
‘ wbemChangeFlagEnum Setting
const UpdateOnly = 1
UpdateSendHandler
‘ MSBTS_ReceiveHandler host association update
Sub UpdateSendHandler ()
‘Get the command line arguments entered for the script
Dim Args: Set Args = WScript.Arguments
‘error handling is done by explicity checking the err object [...]
Filed by Paul Gu at February 6th, 2009 under BizTalk
No comments on this post yet