Question
Unable to set infotable from edge
I am setting an infotable from java sdk edge, but the value is updated only the first time.
For example the following code sets the infotable correctly in the first iteration of the while loop
while(true){
this.setPropertyValue("SomePropertyName", new InfoTablePrimitive(myClass.returnsNewInfotable()));
this.updateSubscribedProperties(1000);
}
In the second iteration , the value is not changed, i.e. even if the function returnsNewInfotable returns an infotable with different values, only the initial values are reflected in thingworx server.

