Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Each <Attribute> element contains one or more <Value> elements. The contents of each <Value> element represents a value for the attribute. An <Attribute> containing 3 <Value> elements would be transformed into an attribute object with three string values.

Code Block
XML
XML
titleBasic Format of Static Data ConnectorXML
<resolver:DataConnector id="UniqueConnectorID" xsi:type="Static" xmlns="urn:mace:shibboleth:2.0:resolver:dc">
     <Attribute id="AttributeID1">
          <Value>value1</Value>
     </Attribute>
     <Attribute id="AttributeID2">
          <Value>valueA</Value>
          <Value>valueB</Value>
     </Attribute>
</resolver:DataConnector>

...