是否可以关闭/管理 IIS 上的 SSL 连接/会话?

发布于 2024-12-12 01:10:27 字数 464 浏览 0 评论 0原文

我试图找出 IIS 中是否有某种 API 或控件允许我以某种方式控制 SSL 会话,例如关闭会话或要求重新身份验证。

底线我问是否有人知道管理从 C# 到 IIS 7 的 SSL 连接的方法,类似于 Tomcat 7 的方法:

// Invalidate the SSL Session

org.apache.tomcat.util.net.SSLSessionManager mgr =
    (org.apache.tomcat.util.net.SSLSessionManager)
        request.getAttribute("javax.servlet.request.ssl_session_mgr");
mgr.invalidateSession();

使用此代码可以关闭 SSL 连接以防止连接重复使用。我注意到简单的关闭 http 会话是不够的。

有人知道我可以在这里做什么吗?

I'm trying to find out if there is some sort of API or control from IIS to allow me to somehow control the SSL session like for instance close the session, or ask for re-authentication.

Bottom line i'm asking if someone know a way to manage SSL connection from C# to IIS 7, simillar to what Tomcat 7 have:

// Invalidate the SSL Session

org.apache.tomcat.util.net.SSLSessionManager mgr =
    (org.apache.tomcat.util.net.SSLSessionManager)
        request.getAttribute("javax.servlet.request.ssl_session_mgr");
mgr.invalidateSession();

With this code it's possible to shutdown the SSL connection preventing connections re-use. I've noticed that simple close http session is not enought.

Does someone know how can i do something here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文