Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

1 Answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.