To use SSOSettingsFileReader from a non-BizTalk machine, you need changes in the SSOSettingsFileReader code, and the most important one is the Flag and Guid.
public static string InfoIdentifier = "{56D74464-67EA-464d-A9D4-3EBBA4090010}"; //SSOFlag.SSO_FLAG_RUNTIME does not work from a remote machine
private const int SSOFLagsToUse = SSOFlag.SSO_FLAG_NONE;
http://snefs.blogspot.nl/2012/06/centralized-sso-application.html
You don't need to specify the machinename as you can configure the SSO Client using a user interface (at least, that's what we did).
Comments: Resolved with changeset 72717: Update SSOSettingsFileReader to support use from non-BizTalk machine (#9551)
public static string InfoIdentifier = "{56D74464-67EA-464d-A9D4-3EBBA4090010}"; //SSOFlag.SSO_FLAG_RUNTIME does not work from a remote machine
private const int SSOFLagsToUse = SSOFlag.SSO_FLAG_NONE;
http://snefs.blogspot.nl/2012/06/centralized-sso-application.html
You don't need to specify the machinename as you can configure the SSO Client using a user interface (at least, that's what we did).
Comments: Resolved with changeset 72717: Update SSOSettingsFileReader to support use from non-BizTalk machine (#9551)