Set up TTP for Active Directory Login
Active Directory users can now log in to TTP. To enable this function, complete these steps:
-
Use File Explorer to open the Server API Web.Config file in a text editor (such as Notepad or Notepad++).
-
Update the Web.Config file.
Add a new connection string for the LDAP server. For example:
<add name="ADConnectionString" connectionString="LDAP://10.60.10.21/OU=People,DC=tmwsystems,DC=com" />
The LDAP IP address shown above is the IP address of you windows domain controller. The domain for this example is tmwsystems.com. Fill this out using your company’s information. -
Update the Web.config file.
Add the membership provider for Active Directory under system.web using the connection string added in Step 2.
<membership defaultProvider="ADMembershipProvider">
<providers>
<clear/>
<add name="ADMembershipProvider"
type="System.Web.Security.ActiveDirectoryMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ADConnectionString" attributeMapUsername="sAMAccountName"></add>
</providers>
</membership>
Make sure the connection string is the same name as in Step 2.