Delphi 5 Pro Intraweb 7
I have an Intraweb application that uses a "legacy" back end (B-Tree Filer) with a TDataSet descendant to handle the data access. All is fine and dandy on my end.
But, I now have some outside websites requesting to access my data. I've done simple HTML Form Posts and Gets as a communication tool to handle some integration with other sites but one of the requests is now asking me to send a "table" of data back. Each row of the table represents an individual record.
How could I accomplish this with my current setup? Would I POST back with a XML document and let the other site handle the "table" on their end? Is there a DataSet (as in the VB or .Net world definition of Dataset) equivalent I could use in Delphi and if so, how would I send it back to the site making the request?
Any thoughts and suggestions would be greatly appreciated.