1

我发现 NTLMAuthenticationFilter.java 中有以下代码用于露天共享 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 Authentication touch point,那么 touch point 是干什么用的?以及它如何与 SSO 一起工作?

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

4

1 回答 1

-1

你能清楚地解释你的问题吗...

你想要达到什么目的.... SSO ?

请查看此pdf

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

问候,克里希纳

于 2010-11-26T12:41:24.507 回答