dotNetSDK remoteThing
Hi Community!
I created an application to communicate with the TW server. I used the example project in the dotNetSDK documentation.
This is part of the example code of the documentation:
// Set the required configuration information
var config = new ClientConfigurator();
// The uri for connecting to Thingworx
config.Uri = @"ws://127.0.0.1:85/Thingworx/WS";
// Reconnect every 15 seconds if a disconnect occurs or if initial connection cannot be made
config.ReconnectInterval = 15;
// Set the security using an Application Key
var appKey = "6142ffc8-cd11-4977-9e23-253cf770ac9f";
var claims = SecurityClaims.fromAppKey(appKey);
config.Claims = claims;
// Set the name of the client
config.Name = "SteamSensorGateway";
After starting the application the SteamSensorGateway can be shown on the Monitoring -> Remote Things -> Unbound tab with all the VirtualThings, but with is identifier = false in this case.
My question is:
What kind of remote thing is this, and what is it good for?
Is it required to see it as an unbound thing, or something went wrong with my code?
Thanks

