HTTPs using BizTalk 2009 HTTP adapter on Windows 2008 R2





0/5 (0 vote)
Use HTTPs in BizTalk 2009 on Windows 2008 R2
To configure BizTalk 2009 HTTP sending adapter to use HTTPs under Windows 2008 R2, please follow the steps given below:
- Certificates:
- Install the server certificate under the below certificate stores:
- BizTalk host user (Current User)
- Personal
- Trusted Root Certificate Authorities
- Local Machine user
- Personal
- Trusted Root Certificate Authorities
- Other People
- Install the server root path certificates under the below certificate stores:
- BizTalk host user (Current User)
- Trusted Root Certificate Authorities
- Local Machine user
- Trusted Root Certificate Authorities

- Fill the “SSL client certificate thumbprint” property of the HTTP adapter send port, with the server certificate thumbprint:

- Use the URL https://DestinationServer:1234/Service in the URI property of the HTTP adapter send port:

- Map the
IssuedToName
with the IP in the HOSTS file under “C:\Windows\System32\drivers\etc”:

- Disable the using of TLS 1.0 and SSL 2.0, and enable SSL 3.0 from registries:
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols]
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0]
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Client]
- "DisabledByDefault"=dword:00000001
- "Enabled"=dword:00000000
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0]
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Client]
- "Enabled"=dword:ffffffff
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Server]
- "Enabled"=dword:ffffffff
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0]
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client]
- "Enabled"=dword:00000000
- [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server]
- "Enabled"=dword:ffffffff
