I configured the application in adfs trusted proxies, so I can log in using adfs / sso. After that, I installed simplesamlphp to work with this login and processed the saml response.
this is my authsources configuration:
'myauth' => array( 'saml:SP', 'idp' => 'http://domain/adfs/services/trust', 'privatekey' => 'saml.key', 'certificate' => 'saml.crt', ),
but after logging in to the response message, I get the following error:
Login exception: sspmod_saml_Error: Requester / InvalidNameIDPolicy Backtrace: 3 /home/......../adfs/simplesamlphp/modules/saml/lib/Message.phprouble76 (sspmod_saml_Message :: getResponseError 2 home /......../ adfs / simplesamlphp / modules / saml / lib / Message.php: 503 (sspmod_saml_Message :: processResponse) 1 /home/......../adfs/simplesamlphp/modules /saml/www/sp/saml2-acs.php:81 (required) 0 /home/......../adfs/simplesamlphp/www/module.php:135 (N / A)
Am I missing something? How can I get this identity policy? Where to define it?
thanks
source share