English | Magyar

SAML 2.0 SP Metadata

Here is the metadata that simpleSAMLphp has generated for you. You may send this metadata document to trusted partners to setup a trusted federation.

You can get the metadata xml on a dedicated URL:

Metadata

In SAML 2.0 Metadata XML format:

<?xml version="1.0"?>
<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" entityID="https://konferencia.unideb.hu/simplesaml/saml2/sp/metadata.php">
  <md:SPSSODescriptor protocolSupportEnumeration="urn:oasis:names:tc:SAML:2.0:protocol">
    <md:SingleLogoutService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect" Location="https://konferencia.unideb.hu/simplesaml/saml2/sp/SingleLogoutService.php"/>
    <md:NameIDFormat>urn:oasis:names:tc:SAML:2.0:nameid-format:transient</md:NameIDFormat>
    <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="https://konferencia.unideb.hu/simplesaml/saml2/sp/AssertionConsumerService.php" index="0"/>
  </md:SPSSODescriptor>
  <md:ContactPerson contactType="technical">
    <md:SurName>Administrator</md:SurName>
    <md:EmailAddress>webmaster@unideb.hu</md:EmailAddress>
  </md:ContactPerson>
</md:EntityDescriptor>

In simpleSAMLphp flat file format - use this if you are using a simpleSAMLphp entity on the other side:

$metadata['https://konferencia.unideb.hu/simplesaml/saml2/sp/metadata.php'] = array (
  'metadata-set' => 'saml20-sp-remote',
  'entityid' => 'https://konferencia.unideb.hu/simplesaml/saml2/sp/metadata.php',
  'AssertionConsumerService' => 'https://konferencia.unideb.hu/simplesaml/saml2/sp/AssertionConsumerService.php',
  'SingleLogoutService' => 
  array (
    0 => 
    array (
      'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect',
      'Location' => 'https://konferencia.unideb.hu/simplesaml/saml2/sp/SingleLogoutService.php',
    ),
  ),
  'NameIDFormat' => 'urn:oasis:names:tc:SAML:2.0:nameid-format:transient',
);