0
我已經在ADFS 2.0中將ClaimProviderTrust設置爲startersts。通過更改ADFS 2.0 web.config條目配置要顯示的登錄表單。我嘗試在這裏自定義登錄過程,以便當某個人輸入電子郵件地址時,他將登錄StarterSts,否則通過ADFS 2.0安裝提供的Active Directory登錄。我曾試圖在後http://blogs.msdn.com/b/card/archive/2010/01/27/customizing-the-ad-fs-2-0-sign-in-web-pages.aspxStarterSTS作爲備份身份驗證存儲
protected void SubmitButton_Click(object sender, EventArgs e)
{
try
{
SignInWithTokenFromOtherSTS(UsernameTextBox.Text, PasswordTextBox.Text);
}
catch (Exception ex)
{
//
// Fall back to signing in locally with the given username and password.
//
SignIn(UsernameTextBox.Text, PasswordTextBox.Text);
}
}
我只是不知道什麼是變量OtherSTSAddress
和YourSTSAddress
值的代碼。是否有任何更多的配置我需要進行此地址正確
我認爲StarterSTS沒有一個名爲'InteropSts.svc'的文件,或者IdentityServerv1或V2都沒有 – Deeptechtons
可能 - 您需要找到等價物並使用它。 StarterSTS必須有一個終結點列表。 – nzpcmad