Rev 6 | Rev 36 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 6 | Rev 24 | ||
|---|---|---|---|
| Line 1... | Line 1... | ||
| 1 | <?xml version="1.0" encoding="utf-8" ?> |
1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <configuration> |
2 | <configuration> |
| 3 | <appSettings> |
3 | <appSettings> |
| 4 | - | ||
| 5 | <!-- File contenente la lista degli account --> |
4 | <!-- File contenente la lista degli account --> |
| 6 | <add key="AccountsFile" value="accounts.acl" /> |
5 | <add key="AccountsFile" value="accounts.acl" /> |
| 7 | - | ||
| 8 | <!-- Lunghezza dell'identificatore utente --> |
6 | <!-- Lunghezza dell'identificatore utente --> |
| 9 | <add key="UidLength" value="3" /> |
7 | <add key="UidLength" value="3" /> |
| 10 | - | ||
| 11 | <!-- Lunghezza del PIN --> |
8 | <!-- Lunghezza del PIN --> |
| 12 | <add key="PinLength" value="5" /> |
9 | <add key="PinLength" value="5" /> |
| 13 | - | ||
| 14 | <!-- File di log dove viene scritto il risultato dell'autenticazione --> |
10 | <!-- File di log dove viene scritto il risultato dell'autenticazione --> |
| 15 | <add key="AuthLogFile" value="auth.log" /> |
11 | <add key="AuthLogFile" value="auth.log" /> |
| 16 | - | ||
| 17 | <!-- Separatore per il file di log dell'autenticazione --> |
12 | <!-- Separatore per il file di log dell'autenticazione --> |
| 18 | <add key="Separator" value="|" /> |
13 | <add key="Separator" value="|" /> |
| 19 | - | ||
| 20 | <!-- File di log per i messaggi di errore e warning --> |
14 | <!-- File di log per i messaggi di errore e warning --> |
| 21 | <add key="ErrorLogFile" value="err.log" /> |
15 | <add key="ErrorLogFile" value="err.log" /> |
| 22 | - | ||
| 23 | <!-- Posizione della finestra di input utente --> |
16 | <!-- Posizione della finestra di input utente --> |
| 24 | <add key="DigitInputBox.Location.X" value="50" /> |
17 | <add key="DigitInputBox.Location.X" value="50" /> |
| 25 | <add key="DigitInputBox.Location.Y" value="50" /> |
18 | <add key="DigitInputBox.Location.Y" value="50" /> |
| 26 | - | ||
| - | 19 | <add key="ClientSettingsProvider.ServiceUri" value="" /> |
|
| 27 | </appSettings> |
20 | </appSettings> |
| - | 21 | <system.web> |
|
| - | 22 | <membership defaultProvider="ClientAuthenticationMembershipProvider"> |
|
| - | 23 | <providers> |
|
| - | 24 | <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" /> |
|
| - | 25 | </providers> |
|
| - | 26 | </membership> |
|
| - | 27 | <roleManager defaultProvider="ClientRoleProvider" enabled="true"> |
|
| - | 28 | <providers> |
|
| - | 29 | <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" /> |
|
| - | 30 | </providers> |
|
| - | 31 | </roleManager> |
|
| - | 32 | </system.web> |
|
| 28 | </configuration> |
33 | </configuration> |
| 29 | 34 | ||