• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. mirvana
    3. Topics

    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.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website
    M
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 10
    • Groups 0

    Topics

    • M

      BACnetTimeoutException: No response from instanceId

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      3
      0 Votes
      3 Posts
      2k Views
      M
      Thank you, phildunlap. I've got exception stack trace like next. com.serotonin.bacnet4j.exception.BACnetTimeoutException: No response from instanceId XXXXX com.serotonin.bacnet4j.util.RemoteDeviceFinder$DeviceFutureImpl.get(RemoteDeviceFinder.java:176) com.serotonin.bacnet4j.LocalDevice$2.get(LocalDevice.java:705) Also I use timeout related code like the following. Transport transport = new DefaultTransport(network); transport.setTimeout(30000); transport.setSegTimeout(30000); RemoteDeviceFuture dd = localDevice.getRemoteDevice(XXXXX); RemoteDevice d = dd.get(90000); I think this is the bacnet device's problem now, but if I've not use the code correctly, I hope to know about it.
    • M

      encoding problem of output at DiscoveryTest

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      6
      0 Votes
      6 Posts
      3k Views
      M
      Thank you. But the content of the link says it relates java option matter, it seems doubtful a little for me about it. I'll try it anyway.
    • M

      Not working FindDevice.java

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      5
      0 Votes
      5 Posts
      3k Views
      M
      Thank you for your answering. I realized that instaceId == deviceId ,later. I could do what I want as below. RemoteDeviceFuture dd = localDevice.getRemoteDevice(instaceId ); RemoteDevice d = dd.get(); The bug what I got seems being resolved with getRemoteDevice() of Bacnet4J 4.X. thank you.