Answered by:
Reading SSO values in BizTalk Orch Expression shape ?

Question
-
Answers
-
Hi,
Download the SSO Configuration Application MMC Snap-In here and use the SSOClient class found in the download to access values stored in SSO.
Use the class in an Expression shape like: SSO.Utility.SSOClientHelper.Read("[your SSO App]", "[Your key]")
Also refer: https://www.codeproject.com/Tips/559597/How-to-store-BizTalk-configuration-in-the-SSO-data
Rachit Sikroria (Microsoft Azure MVP)
- Edited by Rachit SikroriaModerator Monday, March 27, 2017 12:17 PM
- Proposed as answer by Johns-305MVP, Moderator Monday, March 27, 2017 12:21 PM
- Marked as answer by Rachit SikroriaModerator Tuesday, April 4, 2017 12:06 PM
All replies
-
Hi Reason101,
Refer to below thread on the forum,
BizTalk Server: Application Configuration options refer to the SSO DB section ..
Regards
Mandar Dharmadhikari
-
Hi,
You can Reference SSOClinetHelper.dll if you are using it and Read it in your Orchestration Expression Shape.
Please refer the below Article
https://www.codeproject.com/Tips/559597/How-to-store-BizTalk-configuration-in-the-SSO-data
Ex:
string testValue = SSOClientHelper.Read("MyBizTalkApplication", "TestKey01");
If you are using BTDF to create SSO, You can Reference SSOSettingsFileReader.dll and use the ReadString or ReadINT32 method tog et the Particular Value. Below Article helps you to see the Methods in it.
http://www.tfabraham.com/BTDFDocs/V5_0/DeploymentFrameworkForBizTalkDocs.html?ReadingConfigurationSettingsatRu.html
Thanks,
Sujith.
Sujith
-
Hi,
Download the SSO Configuration Application MMC Snap-In here and use the SSOClient class found in the download to access values stored in SSO.
Use the class in an Expression shape like: SSO.Utility.SSOClientHelper.Read("[your SSO App]", "[Your key]")
Also refer: https://www.codeproject.com/Tips/559597/How-to-store-BizTalk-configuration-in-the-SSO-data
Rachit Sikroria (Microsoft Azure MVP)
- Edited by Rachit SikroriaModerator Monday, March 27, 2017 12:17 PM
- Proposed as answer by Johns-305MVP, Moderator Monday, March 27, 2017 12:21 PM
- Marked as answer by Rachit SikroriaModerator Tuesday, April 4, 2017 12:06 PM