Dansk | Deutsch | English | Español | Suomeksi | Français | Hrvatski | Magyar | Lëtzebuergesch | Nederlands | Nynorsk | Bokmål | Język polski | Português | Sámegiella | Slovenščina | Svenska | Türkçe

Metadados SAML 2.0 SP

De seguida pode encontrar os metadados gerados pelo SimpleSAMLphp. Pode enviar este documento de metadados aos seus parceiros para configurar uma federação.

Pode obter os metadados em XML num URL dedicado:

https://test.saml.uvt.nl/module.php/saml/sp/metadata.php/sfo

Metadados

Metadados no formato XML SAML 2.0

<?xml version="1.0"?>
<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" entityID="https://test.saml.uvt.nl/module.php/saml/sp/metadata.php/sfo">
  <md:SPSSODescriptor protocolSupportEnumeration="urn:oasis:names:tc:SAML:2.0:protocol urn:oasis:names:tc:SAML:1.1:protocol">
    <md:SingleLogoutService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect" Location="https://test.saml.uvt.nl/module.php/saml/sp/saml2-logout.php/sfo"/>
    <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="https://test.saml.uvt.nl/module.php/saml/sp/saml2-acs.php/sfo" index="0"/>
    <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:1.0:profiles:browser-post" Location="https://test.saml.uvt.nl/module.php/saml/sp/saml1-acs.php/sfo" index="1"/>
    <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact" Location="https://test.saml.uvt.nl/module.php/saml/sp/saml2-acs.php/sfo" index="2"/>
    <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:1.0:profiles:artifact-01" Location="https://test.saml.uvt.nl/module.php/saml/sp/saml1-acs.php/sfo/artifact" index="3"/>
  </md:SPSSODescriptor>
  <md:ContactPerson contactType="technical">
    <md:GivenName>LIS Infrastructure Unix</md:GivenName>
    <md:EmailAddress>mailto:noreply@uvt.nl</md:EmailAddress>
  </md:ContactPerson>
</md:EntityDescriptor>

Metadados no formato ficheiro de configuração do SimpleSAMLphp. Use esta alternativa se usar uma entidade SimpleSAMLphp no outro extremo:

$metadata['https://test.saml.uvt.nl/module.php/saml/sp/metadata.php/sfo'] = [
    'SingleLogoutService' => [
        [
            'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect',
            'Location' => 'https://test.saml.uvt.nl/module.php/saml/sp/saml2-logout.php/sfo',
        ],
    ],
    'AssertionConsumerService' => [
        [
            'index' => 0,
            'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
            'Location' => 'https://test.saml.uvt.nl/module.php/saml/sp/saml2-acs.php/sfo',
        ],
        [
            'index' => 1,
            'Binding' => 'urn:oasis:names:tc:SAML:1.0:profiles:browser-post',
            'Location' => 'https://test.saml.uvt.nl/module.php/saml/sp/saml1-acs.php/sfo',
        ],
        [
            'index' => 2,
            'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact',
            'Location' => 'https://test.saml.uvt.nl/module.php/saml/sp/saml2-acs.php/sfo',
        ],
        [
            'index' => 3,
            'Binding' => 'urn:oasis:names:tc:SAML:1.0:profiles:artifact-01',
            'Location' => 'https://test.saml.uvt.nl/module.php/saml/sp/saml1-acs.php/sfo/artifact',
        ],
    ],
    'contacts' => [
        [
            'emailAddress' => 'noreply@uvt.nl',
            'contactType' => 'technical',
            'givenName' => 'LIS Infrastructure Unix',
        ],
    ],
];