Thursday, October 4, 2007

Configuring IIS for BTSHTTPReceive.dll

How to configure IIS for a BizTalk 2006 HTTP Receive Location
First thing you need to do is to make sure that IIS's security is not going to be blocking your calls to the BTSHTTPReceive.dll. To do this goto your IIS manager and click on the Web Service Extension node and right click it and 'Add a new Web Service Extension'. Now browse to the location of BTSHTTPReceive.dll (by default installation its in :\Program Files\Microsoft BizTalk Server 2006\HttpReceive\ folder). Also remember to check the 'Set extension status to Allowed' checkbox. It is also a good idea to create a new application pool for your application to run in. When creating one make sure that the user account used is a member of the BizTalk Isolated Hosts group and the IIS_WPG group.
Now your going to create a new virtual directory in IIS under Default Web Site. Make sure you link the location of BTSHTTPReceive.dll in the content directory. Also make sure you use the new application pool you just setup. Make sure that both Read and Execute permissions are selected, and that Execute permissions are set to Scripts and Executables. After this you should be all set to start setting up your HTTP Receive Location within BizTalk Explorer
Note: Make sure websites are refreshed.

Friday, September 21, 2007

Zombie identification in Biztalk 2006

Zombies can be identified in Biztalk server 2006 by using the following query in the messagebox database.

SELECT * FROM HostNameQ_Suspended where nErrorCategory = 4


In the above query HostName should be replaced with corresponding host name in which you want to identify the Zombies. If the above query return any rows then it indicates that there are Zombies present.

Thursday, August 30, 2007

BizTalk DW Reporting Faulting application btsntsvc.exe, version 3.5.1602.0

BizTalk DW Reporting Faulting application btsntsvc.exe, version 3.5.1602.0
If you are seeing this error in application log,
Set the value of
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\BizTalk Server\3.0\DW\TracingEnabled to 0. Default is 1.

Thursday, August 23, 2007

New transaction cannot enlist in the specified transaction coordinator

The "SQL" adapter is suspending an outbound message going to destination http://www.blogger.com/ servername/DBName/". Details:"New transaction cannot enlist in the specified transaction coordinator. ".

The problem was resolved when I changed :
Administrative Tools \ Component Services \ My Computer \ Properties \ MSDTC \ Security Configuration \ Transaction Manager Communication \ "Mutual Authentication Required" --> and check "Incoming Caller Authentication Required"

Wednesday, May 16, 2007

USB device not showing up in windows explorer

If your USB device is not showing up in windows explorer when connected to your system. Do the following.
- Go to Start - Control panel - Hardware - Device Manager
- Identify the device instance id by going to properties of the corresponding device.
- Go to registry HKLM - System - Enum - USB - and the corresponding device instance id.
- Change the registry value for PortableDeviceNameSpaceExcludeFromShell to "0" (value Zero)
- Connect the USB and the device should be detected now.