Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Problem
The ExplorerOM SDK samples have a database name in the connection string with the incorrect case which causes it to fail on binary collation SQL.
How do I fix it?
Open the Delete Party ExplorerOM SDK sample found at <ProdDir>\SDK\Samples\Admin\ExplorerOM\DeleteParty.
Locate the DeleteParty.cs file.
Change Line 58 of the DeleteParty.cs file to:
catalog.ConnectionString = string.Format("SERVER={0};DATABASE={1};Integrated Security=SSPI", SystemInformation.ComputerName, "BizTalkMgmtDb");
Open the Unenlist Parties ExplorerOM SDK sample found at <ProdDir>\SDK\Samples\Admin\ExplorerOM\UnenlistParties.
Locate the UnenlistParties.cs file.
Change line 58 of the UnenlistParties.cs file needs to change to:
catalog.ConnectionString = string.Format("SERVER={0};DATABASE={1};Integrated Security=SSPI", SystemInformation.ComputerName, "BizTalkMgmtDb");
See all of our documentation issues we are blogging about:
https://blogs.msdn.com/luke/category/7759.aspx