Alfresco Create user from filter

Based on this message, and I was able to authenticate the user. But this post does not authenticate new users who are not around the world. I also studied SSOAuthenticationFilter.java to find out how alfresco creates a user when using an external authentication subsystem, but is not able to understand how user creation is created in the specified subsystem. It would be great if someone could provide a way to create and authenticate a user who is not on the street.

+5
source share
1 answer

What version of Alfresco are you using?

The latest version provides a similar function, please take a look at: http://docs.alfresco.com/community/concepts/auth-basics.html The only thing you need is to define the name of the header in your global property files.

About creating a new user, in Alfresco's behavior it is based on the synchronization.syncWhenMissingPeopleLogIn property: http://docs.alfresco.com/community/concepts/sync-props.html

When an unknown user tries to login, Alfresco will trigger a synchronization.

U.

+1
source

Source: https://habr.com/ru/post/1269066/


All Articles