Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to automate turning a BizTalk Receive Location on or off through code?

Is there a way to automate the turning on or off of a Receive Location in BizTalk? It seems like there should be some kind of API or some such for this kind of thing. I would prefer to work in C#, but WMI or some kind of script would work too.

like image 881
Andrew Dunaway Avatar asked Oct 04 '09 01:10

Andrew Dunaway


1 Answers

Besides ExplorerOM, as you've found out, you can also enable/disable receive locations (and control send ports) using WMI.

I have a sample PowerShell script that shows how to do those things here, if you're interested.

like image 169
tomasr Avatar answered Sep 21 '22 22:09

tomasr