I am trying to get the flash graphing components to link up with my xml file. In this situation it would be impossible to use any type 3rd party server side app ex PHP or ASP due to lack of network enviroment.
Right now I have a small vb app which converts csv to simple xml
Now my question is how do I get this XML output to be readable with the flash graphing components. Macromedia makes this easy with Cold Fusion but come on it doesn't fit every application. I've looked at a couple of white space strippers but nothing that seems to work or fit the situation. Any help stearing me in the right direction would be perfect. Thanks in advance!!!
example of XML output
Right now I have a small vb app which converts csv to simple xml
Now my question is how do I get this XML output to be readable with the flash graphing components. Macromedia makes this easy with Cold Fusion but come on it doesn't fit every application. I've looked at a couple of white space strippers but nothing that seems to work or fit the situation. Any help stearing me in the right direction would be perfect. Thanks in advance!!!
example of XML output
Code:
<parts>
<part>
<flow>123</flow>
<pressure>29.1</pressure>
<temp>500</temp>
<RPM>60000</RPM>
</part>
<part>
<flow>124</flow>
<pressure>30</pressure>
<temp>500</temp>
<RPM>59997</RPM>
</part>
<part>
<flow>125</flow>
<pressure>454</pressure>
<temp>500</temp>
<RPM>59994</RPM>
</part>
</parts>