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.

  • Xml file as datasource

    10
    0 Votes
    10 Posts
    6k Views
    S
    i found a csv file that had the same data With the trick you showed me i get the data from that file. thx for pushing me t he right direction.
  • How to send SMS with GSM modem

    7
    0 Votes
    7 Posts
    5k Views
    L
    I solved the problem, Now I can send sms using an external app...thanks for your help!!!
  • How to execute a batch file from mango

    5
    0 Votes
    5 Posts
    4k Views
    JoelHaggarJ
    On my Unbuntu system it is directly under the Tomcat directory. Joel.
  • How to change emailded events format

    4
    0 Votes
    4 Posts
    3k Views
    M
    Look in WEB-INF/ftl
  • 0 Votes
    2 Posts
    2k Views
    F
    Hi Friends, I need to save some data through a SQL script in a MySQLDB but I don't have this options in a scheduled event. If you are saving data on DB server using mango , please put your case in this forum. Thanks for your help in advance.
  • Derby database purging

    11
    0 Votes
    11 Posts
    6k Views
    M
    With daily purging, that scenario will result in a very stable database size once all of the purging has kicked in. How about you set your system up, let it run for a month, look at the DB size then, and then multiply by 12? I understand that it would be nice to have something automated - believe me i do. But there are a great number of things that are planned for this system. This one honestly has a strong case for remaining mostly manual.
  • Error Logs

    4
    0 Votes
    4 Posts
    3k Views
    F
    It works fine, also I commented out the "DatePattern" param since it's no longer used. Thank you!
  • How to create WAR file

    3
    0 Votes
    3 Posts
    5k Views
    F
    It is generally an automated task of the ant build tool or similar, but you can manually create the war file: Open a command prompt and browse to your (unziped) app dir, lets say it is in ROOT folder of tomcat dir, so go to <Tomcat_home>\webapps\ROOT Use the java archive command 'jar' to bundle up your application jar -cvf mango-1.10.0.war mango-1.10.0 In English: "compress everything in this directory into a file named mango-1.10.0.war" (c=create, v=verbose, f=file) You can find addtional info here: http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/WCC3.html
  • How can I save a register in MySQL DB by a scheduled event?

    2
    0 Votes
    2 Posts
    2k Views
    F
    Hi friend! How can I save a register in MySQL DB by a scheduled event?. I need to save some values in a MySQL DB table every 5 minutes. I don't know how start making this. Thank's for you help.
  • Chart module - which is the JSP page ??

    4
    0 Votes
    4 Posts
    3k Views
    M
    Oh, yeah, so the pages are watchList.jsp, and dataPointDetails.jsp. But what you are probably more interested in is WEB-INF/tags/dateRange.tag.
  • 0 Votes
    6 Posts
    3k Views
    M
    1 - Yes 2 - When Matcher.match returns false, that message is shown. Can you enumerate the multiple errors you think this is returned for? 3 - Personally, i use QuickREx, a plugin for Eclipse by Bastian Bergerhoff, and i recommend it. If you're not using Eclipse there are probably similar tools around. Find a Java-based one to be sure you're using the same pattern compiler/matcher as Mango.
  • Shorter update intervall (http retriever)

    4
    0 Votes
    4 Posts
    3k Views
    H
    ty i polling a serflet, started on local maschine :)
  • Embed an SVG file and control its properties

    3
    0 Votes
    3 Posts
    3k Views
    J
    Hello, The quick answer to this is no, this is not supported in the current version. The slightly longer answer is that this is entirely doable, but isn't on the current product roadmap. The long answer, is that we would gladly consider adding this to the development plan, and development could of course be accelerated if this was sponsired work, like many of the other fine features and capabilities of Mango that have been made possible by our community. If this is of interest, please do not hesitate to contact us. Regards, /jk
  • Create new Data Source with my protocol (Modbus Modified)

    3
    0 Votes
    3 Posts
    3k Views
    M
    Mango uses the Modbus4J implementation of Modbus. You should look there to start.
  • Creating my own "graphics library"

    5
    0 Votes
    5 Posts
    4k Views
    M
    True, the info.txt file is not actually required. Check your console on startup for ViewGraphicLoader messages.
  • How Mango is Saving Httpreceiver data

    2
    0 Votes
    2 Posts
    2k Views
    A
    hi, I wish to know how Mango is saving the data in database when data is received by "HttpDataSourceServlet" upon sending request as "http://192.168.1.1/Mango/httpds?__device=20&__valuepoint1=111&__timepoint1=12092010&__pointpoint1=mykey&__valuepoint2=222&__timepoint2=18072011&__pointpoint2=mykey" and can it be ploted on graph.
  • Receive a UDP packet

    5
    0 Votes
    5 Posts
    3k Views
    M
    There's always Serotonin Professional Services... :)
  • Writing a polled Point to Pachube

    11
    0 Votes
    11 Posts
    8k Views
    C
    Ok. My bad. I always sand-boxed myself in the data source world. I never used publisher and saw it. No brainer now.
  • Update Period Error in v1.9

    10
    0 Votes
    10 Posts
    5k Views
    C
    That did it. Left overs from something. thx
  • Receive method POST

    3
    0 Votes
    3 Posts
    3k Views
    M
    You want to receive data in your custom view? You can't update point values with the data, but you could use the values in the rendering of the page (although that doesn't really achieve a lot). If you want to get data into points via POST, you should use the HTTP Receiver data source.