Management and Administration > Workspace Management > Management Console > SmartObject Services > SmartObject Services > SharePoint Services > SharePoint CSOM Services > SSO Supported Scenarios | Send feedback |
The information presented in this topic is optional as there is one SharePoint security provider label available at present. If there is an AD user which has two sets of credentials (windows live ID), then a second label would be needed. |
SSO-based authentication using the SHAREPOINT label to cache credentials is only supported for SharePoint Online. Do not use SSO authentication for SharePoint Content and SharePoint Management service instances for local (on-premise) SharePoint installations. |
Solution:
Solution:
SQL script – This is not done during installation
The SharePoint Online provider GUID is used in the query:
Run the following query against the K2HostServer database to add the admin label
DECLARE @LabelGUID uniqueidentifier
SET @LabelGUID = NEWID()
INSERT INTO [HostServer].[SecurityLabel]
([SecurityLabelID]
,[SecurityLabelName]
,[AuthSecurityProviderID]
,[AuthInit]
,[RoleSecurityProviderID]
,[RoleInit]
,[DefaultLabel])
VALUES (@LabelGUID
,N'SPADMIN'
,N'EF4270D2-BF28-4805-BF90-CF7A6BB0D518'
,N'<AuthInit />'
,N'EF4270D2-BF28-4805-BF90-CF7A6BB0D518'
,NULL
,NULL);
The result should look like the following
Restart the K2HostServer service to pick up the newly added label
In Workspace
Cache credentials for admin user against new label [SPADMIN]
Cache credentials against the [SHAREPOINT] label for a user
Security labels cached