Error configuring EDI/AS2 on BizTalk 2006 R2
Like me :-( if you uninstalled BizTalk 2006 Server and then re-installed BizTalk 2006 R2 and have been boiling the oceans to figure out the configuration error on the BizTalk EDI/AS2 Runtime:
"DTS package BAM_DM_InterchangeStatusActivity already exists"
Its because the EDI/AS2 Data Transformation Services (DTS) packages are not automatically removed from SQL Integration Services after you unconfigure the EDI/AS2 Runtime feature (when you uninstalled).
Simple solution is to use the Bm.exe utility from the command prompt to remove the DTS packages:
- C:\Program Files\Microsoft BizTalk Server 2006\Tracking>Bm.exe remove-all -DefinitionFile:"C:\Program Files\Microsoft BizTalk Server 2006\AS2ReportingActivityDefs.xml"
- C:\Program Files\Microsoft BizTalk Server 2006\Tracking>Bm.exe remove-all -DefinitionFile:"C:\Program Files\Microsoft BizTalk Server 2006\EdiReportingActivityDefs.xml"
- C:\Program Files\Microsoft BizTalk Server 2006\Tracking>Bm.exe remove-all -DefinitionFile:"C:\Program Files\Microsoft BizTalk Server 2006\EdiReportingActivityIndexes.xml" Note: It may complain that some components could not be removed
(Note: If your BizTalk is not installed in the default folder i.e. "C:\Program Files\Microsoft BizTalk Server 2006" replace this string with thefolder where your R2 is installed)
Go to BizTalk Server Configuration and configure the BizTalk EDI/AS2 Runtime again and Apply configuration. Look at the following article for more details:
https://support.microsoft.com/kb/939549
Comments
Anonymous
August 26, 2007
PingBack from http://msdnrss.thecoderblogs.com/2007/08/26/error-re-configuring-edias2-on-biztalk-2006-r2/Anonymous
July 09, 2009
Thank you! This fix works for re-configuring BizTalk 2009 aswell.Anonymous
July 24, 2009
With BizTalk Server 2009 (upgraded from BTS 2006), it did work after this additional step:
- Bm.exe remove-all -DefinitionFile:"C:Program FilesMicrosoft BizTalk Server 2006AS2ResendActivityDefs.xml"
- Anonymous
July 25, 2009
Thanks for sharing the above informations folks..