• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. cenk
    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
    C
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 15
    • Posts 48
    • Groups 0

    Topics

    • C

      Realize Connection and object exists check

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion check connectio
      4
      0 Votes
      4 Posts
      2k Views
      phildunlapP
      I am saying the only way to detect a spontaneous disconnection, which I think it what you're asking, is to send a request of some sort and have it time out.
    • C

      RequestUtils.readProperties Bacnettimeoutexception

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      4
      0 Votes
      4 Posts
      2k Views
      phildunlapP
      Then you should be able to drop a breakpoint in the ServiceFutureImpl method and see where that BACnet timeout exception is coming from. But result is same. Does it at least take longer to timeout? I do not believe the actual sending of the property request is present in the code you have shared. Nor is the configuration of the local device there. That's not a lot of information to work with.
    • C

      RemoteDevice connection check

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved BACnet4J general discussion
      2
      0 Votes
      2 Posts
      2k Views
      phildunlapP
      Hi cenk, I'm not sure precisely what you mean, but, you can issue a request to it and see if it responds.
    • C

      Buffer_READY event notification

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      5
      0 Votes
      5 Posts
      3k Views
      C
      Trend log object is working in bacnet4j, isn't it. Have you ever anyone test it before. I need help about trend log.
    • C

      Trend Log defination for SlaveDevice

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      11
      0 Votes
      11 Posts
      6k Views
      S
      how can i use mango master to get data/value from simulator device and monitor the simulator using any data source like modbus/dnp3/bacnet etc. please help me
    • C

      Java.net.SocketException: getifaddrs not supported

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      2
      0 Votes
      2 Posts
      2k Views
      C
      Hi; I am trying Bacnet4j on linux. But when I created bacnet device The error occured. Message is below java.lang.RuntimeException: java.net.SocketException: getifaddrs not supported at com.serotonin.bacnet4j.LocalDevice.getAllLocalAddresses(LocalDevice.java:779) at com.serotonin.bacnet4j.service.unconfirmed.IAmRequest.handle(IAmRequest.java:71) at com.serotonin.bacnet4j.LocalDevice.handleUnconfirmedRequest(LocalDevice.java:733) at com.serotonin.bacnet4j.npdu.ip.IpMessageControl$IncomingMessageExecutor.runImpl(IpMessageControl.java:555) at com.serotonin.bacnet4j.npdu.ip.IpMessageControl$IncomingMessageExecutor.run(IpMessageControl.java:489) at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source) at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) at java.lang.Thread.run(Unknown Source) Caused by: java.net.SocketException: getifaddrs not supported at java.net.VMNetworkInterface.getVMInterfaces(Native Method) at java.net.NetworkInterface.getNetworkInterfaces(Unknown Source) at com.serotonin.bacnet4j.LocalDevice.getAllLocalAddresses(LocalDevice.java:768) ...7 more It seem the Operating system is not supported getifaddrs. But how can I do. Thank you!
    • C

      Multi broadcast address

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      7
      0 Votes
      7 Posts
      4k Views
      J
      I think this is more a networking issue rather than a BACnet or BACnet4j issue. What I would do is create a seperate network with only the devices you want to broadcast to, and put in a gateway/route to the rest of the network to provide connectivity if you require it.
    • C

      Max Objects Count

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      3
      0 Votes
      3 Posts
      2k Views
      M
      I committed a change to IpMessageControl that will provide a better exception message than the NPE. Please build from the latest source and give it another try.
    • C

      Max Objects Count

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      4
      0 Votes
      4 Posts
      3k Views
      C
      I solved my problem. I have changed the prameter of PropertyIdentifier.maxSegmentsAccepted. I setted it to 5. Because of I have got alot of objects.
    • C

      Bacnet Client Exception

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      15
      0 Votes
      15 Posts
      8k Views
      R
      :-) absolutely - i am happy it works.
    • C

      Bacnet TrendLog

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      3
      0 Votes
      3 Posts
      3k Views
      M
      Yes, you should be able to do that. I don't have any equipment here at the moment to test with, but you're basically just reading object properties, so it's really no different than anything else.
    • C

      Bacnet Master Write Output Value

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      3
      0 Votes
      3 Posts
      3k Views
      M
      WriteProperty-Request. WritePropertyMultiple-Request.
    • C

      To Log send and receive message

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      3
      0 Votes
      3 Posts
      3k Views
      M
      You'd have to hack the code. There's no built in way to do this.
    • C

      About Slave Connection WhoIs Request

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      13
      0 Votes
      13 Posts
      7k Views
      M
      RemoteDevice's are local proxies of other devices on the network. The localBindAddress allows you choose on which NIC to listen.
    • C

      About Slave Connection

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      5
      0 Votes
      5 Posts
      3k Views
      M
      The real-life analogy is, e.g. an outdoor temperature. You can only read it - you can't change it (realistically). In cases like this having a read-only type is appropriate.