Monthly Archives: June 2008

BizTalk: Import bindings error

When importing bindings you might get an error that the host application defined in the bindings file is not trusted or the names do not match. This could be caused due to one of the following reasons: The host names … Continue reading

Posted in BizTalk | Leave a comment

SQL Server: Get Version of the running version

  SELECT ‘SQL Server ‘ + CAST(SERVERPROPERTY(‘productversion’) AS VARCHAR) + ‘ – ‘ + CAST(SERVERPROPERTY(‘productlevel’) AS VARCHAR) + ‘ (‘ + CAST(SERVERPROPERTY(‘edition’) AS VARCHAR) + ‘)’

Posted in SQL Server | Leave a comment

IIS Security: Configure IIS to support both Kerberos and NTLM authentication

Follow the instructions provided at this location to enable both kerberos and NTLM Authenticaiton: http://support.microsoft.com/kb/215383

Posted in .NET | Leave a comment

BizTalk: Handling SQL Adapter Exceptions to resume suspended orchestrations

Microsoft.XLANGs.BaseTypes.DeliveryFailureException You might come across a need to catch SQL Adapter exceptions such as "Unable to connect to database" or "Invalid Stored Proc" when calling Stored procs from BizTalk using SQL Adapter. You can do the following to be able … Continue reading

Posted in BizTalk | 1 Comment

BizTalk: Validating XML messages in BizTalk 2006

  XML messages can be validated at different places in BizTalk. Validating at end points using web services (SOAP Adapters), validating using pipeline components (XML Disassembler, XML Validator or custom pipeline components) or validating in an orchestration using custom .NET … Continue reading

Posted in BizTalk | Leave a comment

Useful Hotkeys

  To open Recycle bin from the run command: ::{645ff040-5081-101b-9f08-00aa002f954e} Related articles: http://www.autohotkey.com/docs/commands/Run.htm

Posted in Windows | Leave a comment

BizTalk: Enterprise Service Bus (ESB) for BizTalk Server 2006

ESB is an excellent pattern that can be adopted while developing SOA integrated solution using BizTalk Server 2006/R2. It provides architecture guidance with the following features: Message based, Loosely coupled, Message validation, Run-time repository, Design-time repository, Run-time management (SLA), Intelligent … Continue reading

Posted in BizTalk | Leave a comment