English | Português brasileiro

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:

https://brapci.inf.br/simplesaml/module.php/saml/sp/metadata.php/CafeExpresso

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://idp3.cafeexpresso.rnp.br/idp/shibboleth">
  <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://brapci.inf.br/simplesaml/module.php/saml/sp/saml2-logout.php/CafeExpresso"/>
    <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="https://brapci.inf.br/simplesaml/module.php/saml/sp/saml2-acs.php/CafeExpresso" index="0"/>
    <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:1.0:profiles:browser-post" Location="https://brapci.inf.br/simplesaml/module.php/saml/sp/saml1-acs.php/CafeExpresso" index="1"/>
    <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact" Location="https://brapci.inf.br/simplesaml/module.php/saml/sp/saml2-acs.php/CafeExpresso" index="2"/>
    <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:1.0:profiles:artifact-01" Location="https://brapci.inf.br/simplesaml/module.php/saml/sp/saml1-acs.php/CafeExpresso/artifact" index="3"/>
  </md:SPSSODescriptor>
  <md:ContactPerson contactType="technical">
    <md:GivenName>Administrator</md:GivenName>
    <md:EmailAddress>mailto:renefgj@gmail.com</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://idp3.cafeexpresso.rnp.br/idp/shibboleth'] = [
    'SingleLogoutService' => [
        [
            'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect',
            'Location' => 'https://brapci.inf.br/simplesaml/module.php/saml/sp/saml2-logout.php/CafeExpresso',
        ],
    ],
    'AssertionConsumerService' => [
        [
            'index' => 0,
            'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST',
            'Location' => 'https://brapci.inf.br/simplesaml/module.php/saml/sp/saml2-acs.php/CafeExpresso',
        ],
        [
            'index' => 1,
            'Binding' => 'urn:oasis:names:tc:SAML:1.0:profiles:browser-post',
            'Location' => 'https://brapci.inf.br/simplesaml/module.php/saml/sp/saml1-acs.php/CafeExpresso',
        ],
        [
            'index' => 2,
            'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact',
            'Location' => 'https://brapci.inf.br/simplesaml/module.php/saml/sp/saml2-acs.php/CafeExpresso',
        ],
        [
            'index' => 3,
            'Binding' => 'urn:oasis:names:tc:SAML:1.0:profiles:artifact-01',
            'Location' => 'https://brapci.inf.br/simplesaml/module.php/saml/sp/saml1-acs.php/CafeExpresso/artifact',
        ],
    ],
    'contacts' => [
        [
            'emailAddress' => 'renefgj@gmail.com',
            'contactType' => 'technical',
            'givenName' => 'Administrator',
        ],
    ],
];