Coder Social home page Coder Social logo

Comments (3)

Yvand avatar Yvand commented on August 10, 2024

Hi @MiikkaLehtonen,
As the log mentioned, SharePoint expects to use claims provider SPTrustedBackedByActiveDirectoryClaimProvider but since it's LDAPCP, it stops.

SPTrustedBackedByActiveDirectoryClaimProvider is a quite special, hidden claims provider that was implemented to ease migration from Windows claims to trusted authN.
It is never visible or used explicitely, the only way to use it is to create the SPTrustedIdentityTokenIssuer object using the "-UseDefaultConfiguration" switch, as documented in kb3042604.

So the short answer for you would be to delete the SPTrustedIdentityTokenIssuer and recreate it with the "-UseDefaultConfiguration" switch.
This will "disconnect" LDAPCP from the trust and link SPTrustedBackedByActiveDirectoryClaimProvider to it instead.

Unfortunately, due to the implementation of SPTrustedBackedByActiveDirectoryClaimProvider, it's very likely not going to work in your scenario:
the problem is the value used to set the entity key of each entity (aka user):
SPTrustedBackedByActiveDirectoryClaimProvider uses specifically the SID of users (remember it's used to migrate winclaims to trusted authN), but:

  • I suspect SharePoint doesn't even get the SID of users in your scenario.
  • LDAPCP uses the identity claim type for the entity key.

This difference means that if you switch to SPTrustedBackedByActiveDirectoryClaimProvider, you will mess up your trusted users permissions.

So, I don't know how to resolve your issue, but I would search for a way that doesn't involve using SPTrustedBackedByActiveDirectoryClaimProvider, if possible.

from ldapcp.

MiikkaLehtonen avatar MiikkaLehtonen commented on August 10, 2024

Thanks. I finally decided to change users manually in the managed metadata service. Then I also had to add the Claims based All Authenticated users group to hidden Taxonomy list. The hidden Taxonomy list can be browsed by putting this on the end of your Site Collection URL /Lists/TaxonomyHiddenList/.

Miikka

from ldapcp.

Yvand avatar Yvand commented on August 10, 2024

Ok, good news that you could do it this way

from ldapcp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.