• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. elran
    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
    E
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 3
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by elran

    • E

      client publisher - EOS alarm -> what dows it mean?

      Mango General
      • • • elran
      3
      0
      Votes
      3
      Posts
      1.1k
      Views

      phildunlapP

      Hi elran,

      It may also help to know what kind of publisher, if Craig's suggestion doesn't solve it.

    • E

      new data source added in servers side - overrides an existing data source

      Mango General
      • • • elran
      3
      0
      Votes
      3
      Posts
      1.1k
      Views

      terrypackerT

      @elran pretty vague but if you make a copy of a data source and save it without changing the id field it will update the data source with that id. To signal to Mango that you want to create a new data source you will need to set the id field to -1

      In the Java code we have the constant:
      com.serotonin.m2m2.Common.NEW_ID = -1

    • E

      mulitple publishers configuration on client side is failing

      Mango General
      • • • elran
      2
      0
      Votes
      2
      Posts
      923
      Views

      phildunlapP

      is multiple publisher configuration a feasible functionality?

      Yes you can make as many publishers as your system can handle running.

      it was verified that on the servers side the 1st and 3rd publisher
      had the same port configuration... which probably triggered this "bug"

      What kind of publisher are you talking about? For any but Modbus which have ports, you can use the same port, as it is a client connection to another host at that port. And, in BACnet, it is able to share the local device.

      I was able to reproduce the issue. It has to do with the way the old UI stores some state about editing on the server side, and it gets confused when you work with multiple tabs open. To achieve this, you could hit the new publisher button in one tab, then the edit existing in another tab, now go back to the first and save the new publisher (must be the same type or there will be a typecast error), and you've updated the existing publisher! This is not going to be fixed, as the publisher UI will soon be present in the new UI.

      why does the following declaration appear?

      Ah, so you're using the Mango Persistent TCP Publisher, yes? That message pretty much explains itself. The Receiver is trying to create the incoming point, but it cannot do so because that XID already is being used by another point in the system. You can supply an XID prefix with the publisher such that all points transmitted with have their XIDs prefixed with that string (enabling publishing to localhost). I guess one could manually create a point on a receiver and then add that to a publisher back to that receiver, but I cannot fathom a reason to do so.