This is a continuation from two other blog posts about upgrading from BizTalk 2010 to BizTalk 2013.
Mike who I mentioned previously has given the following tip if you are having trouble getting the Alerting service in the Exception Management Service working in BizTalk 2013.
“….make sure:
1) BizTalk ESB Exception Notification.exe has updated assembly versions for any Enterprise library reference
2) Update the path of the BizTalk ESB Exception Notification.exe in the
<enterpriseLibrary.ConfigurationSource selectedSource="AlertService">
<sources>
<add name="AlertService" type="Microsoft.Practices.EnterpriseLibrary.Common.Configuration.FileConfigurationSource, Microsoft.Practices.EnterpriseLibrary.Common, Version=5.0.414.0,Culture=neutral, PublicKeyToken=31bf3856ad364e35" filePath="C:\Program Files (x86)\ESB.AlertServiceInstall\BizTalk ESB Exception Notification.exe.config"/>
</sources>
</enterpriseLibrary.ConfigurationSource>
3) Add the following binding to the BizTalk ESB Exception Notification.exe
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<qualifyAssembly partialName="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling"
fullName="Microsoft.Practices.EnterpriseLibrary.ExceptionHandling, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</assemblyBinding>
</runtime>
……”