英文:
.net core 1.1 compatibility with FoxIDs SAML 2
问题
抱歉,由于您要求只翻译代码部分,我会忽略问题和其余内容,只翻译代码部分:
我有一个使用非常旧版本的.NET的.NET应用程序,该版本是.NET Core 1.1。我们有一个要求在我们的组织中集成SAML2身份提供者。由于某些原因,我们无法将此应用程序升级到较新的.NET版本。
我已阅读了您的GitHub文档,在那里提到要使用最低.NET Core 3.1。
我的问题是
是否有任何可能性或技巧,我可以在具有较旧.NET版本的应用程序中使用ITfoxtec.Identity.Saml2包。
英文:
I have a .net application which is using very old version of .net which is .net core 1.1. We have a requirement to integrate SAML2 identity provider in our organization. We can't upgrade this application to newer .net version for some reasons.
I have read your github documentation where it is mentioned to use minimum .net core 3.1.
My Question is that
Is there any kind of possibility or hack where I can use ITfoxtec.Identity.Saml2 package in my application which is having older .net version.
答案1
得分: 1
不能仅使用.NET Core 1.1,而不使用完整的.NET Framework。这不是一个好主意,也可能不可行。
我认为最好的解决方案是使用代理来从SAML 2.0转换为OpenID Connect。然后,您需要在您的应用程序中实现OpenID Connect,在.NET Core 1.1中是可能的。
英文:
It is not possible to use .NET Core 1.1 without also using the full .NET Framework. Which is a bad idea and probably not possible either.
I think the best solution is to use a broker to transfer from SAML 2.0 to OpenID Connect. Then you need to implement OpenID Connect in your applications, which is possible in .NET Core 1.1.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论