local binding through script
I'm trying to pass the name of "TrackerThing" to a service on a "CarThing" to bind the location property of the tracker to the car.
var params = {
propertyName: "location" /* STRING /,<br> sourceThingName: trackerName / STRING /,<br> sourcePropertyName: "location" / STRING */
};
me.SetLocalPropertyBinding(params);
The service runs with no effect. In the app log I see this error: "Invalid service name: GetRemoteMetadata"
I can perform this action manually.

