Μεταδεδομένα

Αυτά είναι τα μεταδεδομένα που έχουν παραχθεί από το SimpleSAMLphp για εσάς. Μπορείτε να τα στείλετε σε οντότητες που εμπιστεύεστε προκειμένου να δημιουργήσετε ομοσπονδία.
You can get the metadata xml on a dedicated URL:
https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/metadata.php/default-sp
SAML Metadata
Μεταδεδομένα σε μορφή xml SAML 2.0:
<?xml version="1.0"?> <md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" entityID="https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/metadata.php/default-sp"> <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://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml2-logout.php/default-sp"/> <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" Location="https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml2-acs.php/default-sp" index="0"/> <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:1.0:profiles:browser-post" Location="https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml1-acs.php/default-sp" index="1"/> <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact" Location="https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml2-acs.php/default-sp" index="2"/> <md:AssertionConsumerService Binding="urn:oasis:names:tc:SAML:1.0:profiles:artifact-01" Location="https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml1-acs.php/default-sp/artifact" index="3"/> <md:AttributeConsumingService index="0"> <md:ServiceName xml:lang="en">HSA Rechenzentrum</md:ServiceName> <md:RequestedAttribute Name="urn:mace:dir:attribute-def:uid" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:uri"/> <md:RequestedAttribute Name="urn:mace:dir:attribute-def:commonName" NameFormat="urn:oasis:names:tc:SAML:2.0:attrname-format:uri"/> </md:AttributeConsumingService> </md:SPSSODescriptor> <md:ContactPerson contactType="technical"> <md:GivenName>RZ</md:GivenName> <md:SurName>Service</md:SurName> <md:EmailAddress>mailto:rzservice@hs-augsburg.de</md:EmailAddress> </md:ContactPerson> </md:EntityDescriptor>
SimpleSAMLphp Metadata
Use this if you are using a SimpleSAMLphp entity on the other side:
$metadata['https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/metadata.php/default-sp'] = [ 'SingleLogoutService' => [ [ 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect', 'Location' => 'https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml2-logout.php/default-sp', ], ], 'AssertionConsumerService' => [ [ 'index' => 0, 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST', 'Location' => 'https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml2-acs.php/default-sp', ], [ 'index' => 1, 'Binding' => 'urn:oasis:names:tc:SAML:1.0:profiles:browser-post', 'Location' => 'https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml1-acs.php/default-sp', ], [ 'index' => 2, 'Binding' => 'urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Artifact', 'Location' => 'https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml2-acs.php/default-sp', ], [ 'index' => 3, 'Binding' => 'urn:oasis:names:tc:SAML:1.0:profiles:artifact-01', 'Location' => 'https://idp2.hs-augsburg.de/simplesaml/module.php/saml/sp/saml1-acs.php/default-sp/artifact', ], ], 'name' => [ 'en' => 'HSA Rechenzentrum', ], 'attributes' => [ 'urn:mace:dir:attribute-def:uid', 'urn:mace:dir:attribute-def:commonName', ], 'attributes.NameFormat' => 'urn:oasis:names:tc:SAML:2.0:attrname-format:uri', 'contacts' => [ [ 'emailAddress' => 'rzservice@hs-augsburg.de', 'contactType' => 'technical', 'givenName' => 'RZ', 'surName' => 'Service', ], ], ];