Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

XML Format

Status
Not open for further replies.

hilfy

Active member
Oct 31, 2003
2,564
US
I'm building a web service that will serve data to a dashboard that's been created in Xcelsius. Ideally, it will be returning multiple tables in a single result. After doing a lot of research, I've determined that in order for Xcelsius to be able to read it (Xcelsius won't read complex data types...), the format for the tables needs to be something like this:
Code:
<Table1Name>
  <row>
    <column>Column1Name</column>
    <column>Column2Name</column>
  </row>
  <row>
    <column>Row1Data1</column>
    <column>Row1Data2>/column>
  </row>
...
</Table1Name>
<Table2Name>
  <row>
    <column>Column1Name</column>
etc.

My data is in tables in a DataSet.

I haven't done a lot of work with XML so I'm not sure how to transform things to get this format in my output. Does anyone have any suggestions?

Thanks!

-Dell

A computer only does what you actually told it to do - not what you thought you told it to do.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top