-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
27 lines (27 loc) · 1.35 KB
/
App.config
File metadata and controls
27 lines (27 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<appSettings>
<add key="DoorStateXML" value="INSTALLPATH\Door Interface Control\Resources\DoorState.xml" />
<add key="APIWebURL" value="http://yourIsonasServer/"/>
<add key="APIUsername" value ="APIUsername"/>
<add key="APIPassword" value="APIPassword"/>
<add key="LDAPPath" value="LDAP://LDAP SERVER SETTINGS" />
<add key="LDAPUsername" value="LDAPAccount" />
<add key="LDAPPassword" value="LDAPPassword" />
<add key="ClientSettingsProvider.ServiceUri" value="" />
</appSettings>
<startup>
</startup>
<system.web>
<membership defaultProvider="ClientAuthenticationMembershipProvider">
<providers>
<add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
</providers>
</membership>
<roleManager defaultProvider="ClientRoleProvider" enabled="true">
<providers>
<add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
</providers>
</roleManager>
</system.web>
</configuration>