Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.