You are right, I am lost somwhere.
Thing is that simplesamlphp is installed on a different machine.
Owncloud user_saml module requires simplesamlphp to be included into module path.
So I've installed second simplesamlphp next to owncloud and configured authsorces.php:
'sp1' => array(
'saml:SP',
'entityID' => 'owoncloud',
'idp' => '
http://saml.server.cm/',
),
And saml20-idp-remote.php:
$metadata['
http://saml.server.com/'] = array(
'SingleSignOnService' => '
http://saml.server.com/saml2/idp/SSOService.php',
'SingleLogoutService' => '
http://saml.server.comsaml2/idp/SingleLogoutService.php',
'certFingerprint' => 'xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:x',
);
Plus configured saml20-sp-remote.php on
saml.example.com server:
$metadata['owncloud'] = array(
'AssertionConsumerService' => '
http://saml.server.com/module.php/saml/sp/saml2-acs.php/ldap-example',
'SingleLogoutService' => '
http://saml.server.com/module.php/saml/sp/saml2-logout.php/ldap-example',
'certFingerprint' => 'xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx',
);
So, where did i went wrong? Thank you