Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.
Write property ACK timeout exception
-
When sending a WritePropertyRequest, the *ServiceFuture *returned throws a BACnetException: Timeout waiting for response.
This behavior is incorrect, as timeout isn't reached. SimpleACK is received, and the *DefaultTransport *class calls
ResponseConsumer.success(null)ServiceFutureImpl, which implements ResponseConsumer, handles the success, notifying the thread, and then finds the ack field to be null, resulting in the mentioned exception. This is not a correct behavior, because the write was successful.
Is there a way to go around this? I believe there should be an acknowledgement service to be passed from the *SimpleACK *to the ServiceFuture, instead of null.