0

我的雇主有一个本地 ADFS 服务器。我们将 o365/SharePoint Online 与 ADFS 一起使用,因此当您尝试访问 SharePoint 云站点时,您将进入我们网络上的登录页面。

我需要开发一个简单的 ASP.NET C# 网站,该网站托管在网络上的服务器上。

  1. 概括地说,在 asp.net/iis 网站上使用 ADFS 需要什么?是否可以设置为使用相同的登录页面?

  2. 如果我在本地网络服务器上有一个由同一个 ADFS 和 iframe 验证的网页,则该页面在一个由同一个 ADFS 验证的 sharePoint 网页内。是否应该在不进行身份验证的情况下呈现页面?

4

1 回答 1

0

1) I'd recommend checking into Windows Identify Foundation (WIF). Although your app will need to run under TLS/SSL, you probably will just need to run the FedUtil.exe application to generate your application's metadata for ADFS to consume when creating an RP.

2) In theory this might work, but the Iframe'd page will still redirect to ADFS momentarily to get an authentication token. It is just that the login page won't be displayed.

于 2013-09-22T06:09:22.607 回答