You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 3 Next »
To use ADFS with Media Manager, some configuration is required.
In order to use ADFS with Media Manager, the DAM Center which Media Manager uses must have ADFS enabled.
In the supplied web.config there is some AD FS parts that needs to be changed.
Original:
<authorization> <allow users="*" /> <!-- ADFS deny users="?" /--> </authorization>
ADFS Enabled:
<authorization> <deny users="?" /> </authorization>
<trustedIssuers> <add thumbprint="FB041E751322F2D22A212F8B72101B175985CD24" name="http://my-adfs.server.com/adfs/services/trust" /> <add thumbprint="5591CB331588959252502F9533783AEDED336BB2" name="http://my-adfs.server.com/adfs/services/trust" /> </trustedIssuers>
<audienceUris> <add value="https://mm.company.org" /> </audienceUris>
<wsFederation passiveRedirectEnabled="true" issuer="https://my-adfs.server.com/adfs/ls/" realm="https://mm.company.org" requireHttps="true" />
<cookieHandler requireSsl="true" domain="dam.company.org" path="/" />