Delphi 6 XML data bindings
Delphi 6 XML data bindings. Delphi 6 allows you to take a schema to build a set of interfaces (created by a Delphi wizard) for accessing an XML document through simple code:
<PurchaseOrder><Customer>
<Name>Brad Choate</Name>
</Customer>
</PurchaseOrder>
you would refer to the name element like so: sName := PurchaseOrder.Customer.Name;
Powerful stuff. The data binding also eliminates the complexity of XML schema. It sounds like Delphi 6 is going to be a powerful tool for doing XML development for both client and server.