Extension development - database thing template
Hello all,
I'm trying to create thing template based on database thing template in my custom extension. Using creator I've created thing template named MSSQLThingTemplate which is extending database thing template:
@ThingworxBaseTemplateDefinition(name = "Database")
public class MSSQLThingTemplate extends Thing {
public MSSQLThingTemplate() {
// TODO Auto-generated constructor stub
}
}
The problem is that after creating thing template using this method i'm not able to add SQL Query or Command service to thing created from MSSQLThingTemplate, only Local (JavaScript) is visible. Do you know how to fix this? Should this thing template extend different class? Thanks in advance for help.

