December 2006 - Posts
For those of you who are interested in creating your first SQL Server 2005 Service Broker conversation but are impatient as I am, just grab the code below and give it a try: -- Enable service broker alter database [YOUR_DB_NAME] set enable_broker -- Create
Read More...
WCF provides a number of tools that make it easier to create, deploy, and administer WCF applications. Tool Name Description COM+ Service Model Configuration Tool (ComSvcConfig.exe) This is a utility used to configure service model integration for COM+
Read More...
Well as you probably know by now Vista’s clever UAC ensures that gacutil is not run with Administrator privileges and usually for installing and uninstalling assemblies into the gac you’ll need admin rights. A simple solution is to right-click on a Command
Read More...
In order to achieve this, we will be using the Iteration functoid. The Iteration functoid outputs the index of the current record in a looping structure. The XSLT generated by the BizTalk mapper, processes elements with possible multiple instances using
Read More...
Biztalk’s powerful mapper tool, allows the reduction of multiple values into a single value. For instance it allows the user to sum up the values of all orders. However what if we are only interested in summing up the value of all the orders in the scope
Read More...
MSDN's description for a HandleExternalEvent reads as "Defines a workflow communication activity that is used to handle an event that is raised by a local service". In this blog I will try to expand on that definition. Imagine a simple state machine representing
Read More...