SSO 身份验证接触点有何用途?

发布于 2024-09-28 20:46:00 字数 719 浏览 2 评论 0原文

我发现 NTLMAuthenticationFilter.java 中有以下代码用于 alfresco 共享 SSO 身份验证:

   Response remoteRes;
   if (cachedNtlm)
   {
       Connector conn = connectorService.getConnector(this.endpoint, session);
       ConnectorContext ctx = new ConnectorContext(null, getConnectionHeaders(conn));
       remoteRes = conn.call("/touch", ctx, req, null);
   }
   else
   {
       Connector conn = connectorService.getConnector(this.endpoint, AuthenticationUtil.getUserId(req),
               session);
       ConnectorContext ctx = new ConnectorContext();
       remoteRes = conn.call("/touch", ctx);
   }

并且我发现 alfresco/wcs/touch 的描述是: SSO认证接触点,那么接触点有什么用呢?它如何与 SSO 配合使用?

有人可以给我指出方向或参考文献吗?谢谢!

I find there are following code in NTLMAuthenticationFilter.java which used for alfresco share SSO authenticate:

   Response remoteRes;
   if (cachedNtlm)
   {
       Connector conn = connectorService.getConnector(this.endpoint, session);
       ConnectorContext ctx = new ConnectorContext(null, getConnectionHeaders(conn));
       remoteRes = conn.call("/touch", ctx, req, null);
   }
   else
   {
       Connector conn = connectorService.getConnector(this.endpoint, AuthenticationUtil.getUserId(req),
               session);
       ConnectorContext ctx = new ConnectorContext();
       remoteRes = conn.call("/touch", ctx);
   }

and I found the alfresco/wcs/touch's description is:
SSO Authentication touch point, so what is touch point used for? And how it works with SSO?

Can someone point me the direction or the references? Thanks!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜夜流光相皎洁 2024-10-05 20:46:00

您能否清楚地解释您的问题...

您想要实现什么...SSO?

请查看此 pdf

http://www. ultra-scan.com/Portals/16/TouchPoint%20Healthcare%201-27-06.pdf

问候,
克里希纳

can you clearly, explain your problem...

what your are trying to achieve.... SSO ?

Please look into this pdf

http://www.ultra-scan.com/Portals/16/TouchPoint%20Healthcare%201-27-06.pdf

Regards,
Krishna

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文