Hi there, For a project in Java, I use the com.serotonin.bacnet4j library I want to unsubscribe all activeCovSubscriptions during initialization. For that, I first get the list of all activeCovSubscriptions and I loop on it to call the unsubcribe. Get the list: (this part works) final ReadPropertyRequest request = new ReadPropertyRequest(deviceObject, PropertyIdentifier.activeCovSubscriptions); Unsubscribe: final SubscribeCOVRequest cancellation = new SubscribeCOVRequest(new UnsignedInteger(subscriptionProcessIdentifier),...
Hi there, For a project in Java, I use the com.serotonin.bacnet4j library I want to unsubscribe all activeCovSubscriptions during initialization. For that, I first get the list of all activeCovSubscriptions and I loop on it to call the unsubcribe. Get the list: (this part works) final ReadPropertyRequest request = new ReadPropertyRequest(deviceObject, PropertyIdentifier.activeCovSubscriptions); Unsubscribe: final SubscribeCOVRequest cancellation = new SubscribeCOVRequest(new UnsignedInteger(subscriptionProcessIdentifier),...