Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
In the Java SDK (6.0.0.189), when I unbind a thing, should I call unbindThing() or just unbind()? The two methods seem to have different behaviors.
Hi,
I have done it with unbindThing() and able to do it .
SteamThing steamSensorThing = new SteamThing("SteamSensor" + sensorID,"Steam Sensor #" + sensorID,"SN000" + sensorID,client);
//client.bindThing(steamSensorThing);
client.unbindThing(steamSensorThing);
By bindThing() I binded it and with unbindThing() I remove the binding .After this the 'isconnected' property becomes false .For unbind() function ,it takes a string as input .I also gave it a try but don't know it's somehow throwing some exception .Will give it another try and will update you about this function .
Thanks ,
Mukul Narang