3

我已经实现了自定义Saml2SecurityTokenHandler,如此处所示http://leastprivilege.com/2015/07/02/give-your-wcf-security-architecture-a-makeover-with-identityserver3/

此处理程序的构造函数接受两个自定义参数 - authority 和 requiredScopes。在示例中,此处理程序已在代码中注册。但是,我想在 web.config 文件中执行此操作。

<system.identityModel> <identityConfiguration saveBootstrapContext="true"> <securityTokenHandlers> <clear /> <add type="MyNamespace.MyCustomSaml2SecurityTokenHandler, MyAssembly" />
</securityTokenHandlers>
</identityConfiguration> </system.identityModel>

是否可以从配置(web.config)中以某种方式传递这两个构造函数参数?

4

1 回答 1

0

给你的类 MyCustomSaml2SecurityTokenHandler 一个零参数的构造函数。

在运行时从服务器端的本地配置中获取这些详细信息。

于 2019-05-16T19:14:43.593 回答