ADFS 2016 – Cannot add/update Relying Parties from the GUI from metadata files “Method not found”
UPDATE: The following update is fixing this issue:
- Cumulative Update for Windows 10 Version 1607 and Windows Server 2016: December 9, 2016 https://support.microsoft.com/en-us/kb/3201845
If you are currently using the October release of Windows Server 2016 (build: 10.0.14393 N/A Build 14393) you might experience a weird error message when you try to add a relying party trust or update a relying party trust with the metadata files. Whether it is from an HTTPs source or even a local XML files that you previously saved, you have the following message:
It seems that adding or updating a relying party from the console currently does not work as expected. If you don't know what version of Windows you are running, you can run the command "systeminfo" in command prompt and look at the build line.
But no worry, you can still do the job thanks to our good old friend PowerShell.
Adding a relying party trust from an online metadata file:
1
|
Add-AdfsRelyingPartyTrust
-Name
"My App"
-MetadataUrl
"https://web.piaudonn.com/app/federationmetadata/2007-06/federationmetadata.xml"
|
Adding a relying party trust from a metadata saved on the your ADFS server:
1
|
Add-AdfsRelyingPartyTrust
-Name
"My App"
-MetadataFile
"C:\Temp\FederationMetadata.xml"
|
Updating the relying party trust from the metadata file already set on the properties of the trust:
1
|
Update-AdfsRelyingPartyTrust
-TargetName
"My App"
|
This will probably be fixed very soon!
原网址:https://blogs.technet.microsoft.com/pie/2016/10/23/adfs-2016-cannot-addupdate-relying-party-from-the-gui-from-metadata-files/
来源链接:https://www.cnblogs.com/hellohongfu/p/10293037.html
版权声明:
1、JavaClub(https://www.javaclub.cn)以学习交流为目的,由作者投稿、网友推荐和小编整理收藏优秀的IT技术及相关内容,包括但不限于文字、图片、音频、视频、软件、程序等,其均来自互联网,本站不享有版权,版权归原作者所有。
2、本站提供的内容仅用于个人学习、研究或欣赏,以及其他非商业性或非盈利性用途,但同时应遵守著作权法及其他相关法律的规定,不得侵犯相关权利人及本网站的合法权利。
3、本网站内容原作者如不愿意在本网站刊登内容,请及时通知本站(javaclubcn@163.com),我们将第一时间核实后及时予以删除。