I am using the below code to connect to BizTalkServerAdministration in a remote sevrer from my local machine and trying to stop one of the application hosted under it .But it always throw the error at line2:
"Could not load file or assembly 'Microsoft.RuleEngine, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified."
Code:
Microsoft.BizTalk.ExplorerOM.BtsCatalogExplorer btsCExp= new Microsoft.BizTalk.ExplorerOM.BtsCatalogExplorer(); //line1
btsCExp.ConnectionString = "server=BTSSrvr007;database=BizTalkMgmtDb;Integrated Security=SSPI"; //line2
Microsoft.BizTalk.ExplorerOM.Application app = btsCExp.Applications["HeadCount"];
app.Stop(Microsoft.BizTalk.ExplorerOM.ApplicationStopOption.StopAll);
btsCExp.SaveChanges(); //commit the changes
i have given the correct details of BTS for server and database .any fix for this ?