I have an issue
I connected SP and IDP, and all is ok except one thing: SP send GET request to iDp. and iDp demand data sent using POST protocol.
this is SP
'spname' => array(
'saml:SP',
'ProtocolBinding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
'idp' => 'https://someurl.com/SomeSSO.aspx',
'acs.Bindings' => array(
'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
'urn:oasis:names:tc:SAML:1.0:profiles:browser-post',
),
'discoURL' => NULL,
'privatekey' => 'some.pem',
'certificate' => 'some.crt'
),
and this is iDp remote:
$metadata['https://something.com/SomeSSO.aspx'] = array(
'name' => array(
'en' => 'Something',
'no' => 'Something',
),
'description' => 'Something',
'SingleSignOnService' => 'https://xxxxxx.com/SomeSSO.aspx?ou_id=-850',
'SingleLogoutService' => 'https://xxxxxx.com/SomeSSO.aspx?ou_id=-850',
'certFingerprint' => xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
);
can someone help me?