cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Visit the PTCooler (the community lounge) to get to know your fellow community members and check out some of Dale's Friday Humor posts! X

Integrating LDAP with ThingWorx - Overview

No ratings

Integrating LDAP authentication into Thingworx is fairly simple. Since release 5.0 and later, the out-of-the-box (OOTB) Thingworx authenticators already include the necessary code to validate a user's credentials against an LDAP server. These authenticators look to see if an LDAP server is connected every time a user attempts a login, and then further check to see if this user exists in the LDAP server. If the username does exist in LDAP, then Thingworx will check if the password entered is a match to the password stored within LDAP. If the password entered does not match the password stored in LDAP, then Thingworx will next check if the password matches the one stored in Thingworx for that user. So in order for a user to login to Thingworx, they must have a user Thing created for them within Thingworx Composer (this can be done programmatically, see below), and a valid password which matches either an LDAP account password or the password as it is set for that user on the Thing in Thingworx Composer.

The first thing a developer needs to do to integrate LDAP is configure their Thingworx instance so that it can find the LDAP server and access its contents. This is done by importing an XML file which will allow the developer to see a Thing that comes with the Thingworx platform (see attached file "directoryServices.xml"). The Thing that needs configuring is called ApacheDS3 and it is a DirectoryServices Thing.

The largest task for a developer to do to integrate LDAP into Thingworx involves importing their LDAP users into Thingworx. Getting the LDAP usernames out of the LDAP server will vary depending on which distribution of LDAP is in use. However, once the developer acquires this information, using it to create users in Thingworx is simple. The developer will need to create a Thing Service which creates a dummy password and assigns the LDAP username in the parameters. Then they can pass the parameters into the CreateUser service of the “EntitiyServices” resource:

var params = {
password: "SOMETHING_COMPLICATED", //dummy password does not matter, but you don't want an accidental match, so make it something very complicated, and standard to your company's LDAP users
name: ldap_username, //retrieve from LDAP
description: "This user was created as part of LDAP import", //can be whatever you'd like
tags: undefined
};


Resources["EntityServices"].CreateUser(params); // no return


Any users created in this way will be redirected to Squeal if there is no home mashup assigned, so you will have to add an additional bit of code which assigns the home mashups to users, looping through something like this:

var params = {

    name: "dashboard" //replace this with String name of dashboard (must exist)

};

Users[username].SetHomeMashup(params);

For full steps on integrating LDAP and Thingworx, including instructions on how to set up an ApacheDS test LDAP server, see the Thingworx support article titled “Integrate LDAP Authentication and Import LDAP User Directory into Thingworx” (reference document – CS221840).

Comments

Hello I am implementng something a like... login from external service...

public class WebsealAuth extends CustomAuthenticator {

  @Override

  public void authenticate(HttpServletRequest req, HttpServletResponse res) throws AuthenticatorException {

  this.uid = req.getParameter("uid");

  this.gid= parseToArray(req.getParameter("gid"));

  this.setCredentials(this.uid);

  }

}

How do I check if user exists and add him programmatically if not. (same with user groups)

And one more thing...

Any users created in this way will be redirected to Squeal if there is no home mashup assigned, so you will have to add an additional bit of code which assigns the home mashups to users, looping through something like this:

How do I redirect to Composer or somewhere else? Is there any shorthand if I don't want to hard code it?

Version history
Last update:
‎Apr 20, 2016 10:49 AM
Updated by:
Labels (2)
Attachments