07-07-2015 10:06 AM
Hello All,
I am currently working on a process monitoring application for machine tools (milling, lathe etc..), using a cRIO controller to accquire real-time data (vibration, temp) and the MTConnect open standard to communicate with the machine tool, which hosts the adapter and agent on a WINPC. The two datasets are time syncronized to allow correlations and are presented in a webpage as graphs, charts % downtime, % utilisation etc. I have successfully implemented a proof on concept demo of this.
I am now investigating the possibility of using the machine tools MTConnect data to control or change parameters on the cRIO depending on the state of the machine tool. For example you might want to change the sample rate based on a specific conditions, or have trigger conditions to start data acquisiations.
I believe i have several options to pass the XML data from the MTConnect Agent to the cRIO via LAN network.
At the moment i'm consider the best way to start implementing this and therefore do not have specific code for feedback.
I would appreciate any thoughts or if my explanation isn't clear let me know.
Tim
07-07-2015 10:22 AM
I have always just used the string commands to parse the data. Once you use the HTTP Get you should recieve a string output that you can manually parse to pull out any data needed.
LabVIEW also has XML parsing VIs but I have never tried those (I only do limited XML work and was comfortable simply going with raw string manipulation).
07-08-2015 02:36 AM
Thank you for the feedback.
I have used the XML parsing functions previously on the cRIO and it is quite combersom, to drag out the data you want. The XML data is quite dynamic and will change, so wanted to get anyway from having to write specific parsing code using the string .vis to reading the data and pull out specific data items.
07-09-2015 10:18 AM
Has anyone used tinyXML2 on a cRIO? - http://www.grinninglizard.com/tinyxml2/index.html It is a C++ XML parsing libary.
09-29-2017 07:28 AM
Hello,
I am a little late to come to discussion, but I have a similar application as described by tshelleyamrc. @tshelleyamrc , Did you end up implementing the mtconnect+cRIO based system? I am able to use HTTP GET to get data from my Mtconnect agent. But after the body and header, I am not sure what to do next. The XML parser is not well documented and relies on saved XML files to get data out. I want to call HTTP GET in a loop, extract sample values with "current" call and feed it to data logging system.
Any ideas?
Thanks
ParamsciArc