Release 1.2 - ...
<smartsite.digid> element
This element contains the Smartsite DigiD configuration. You can make use of different profiles by way of specifying multiple smartsite.digid elements, each specifying a unique name.
Example
XML |
Copy Code
|
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<smartsite.digid name="profile1">
<!-- settings for profile1 -->
<sharedsecret>[Your shared secret]</sharedsecret>
<aselectserver>[Name of the DigiD server]</aselectserver>
<asurl>[url to DigiD]</asurl>
<appid>[Your App ID]</appid>
<smartsiteaccounts default="digidUser10">
<user level="10" loginname="digidUser10" />
<user level="20" loginname="digidUser20" />
</smartsiteaccounts>
</smartsite.digid>
<smartsite.digid name="profile2">
<!-- settings for profile2 (omitted) -->
</smartsite.digid>
</configuration>
|
Attributes
Attribute name |
Required |
Description |
name |
Yes |
Name of the profile. |
Parent element
Element name |
Description |
<configuration> |
The root element, common to all configuration files. |
Child elements
Element name |
Description |
<sharedsecret> |
Contains the shared secret, the authentication code provided by DigiD.
|
<aselectserver> |
Contains the Server-Id of DigiD.
|
<asurl> |
The url of the DigiD server which will perform the DigiD authentication. |
<appid> |
Contains the unique id for this application, provided by DigiD. |
<smartsiteaccounts> |
Contains mappings between DigiD access levels and Smartsite accounts. |