Jason Walton
Posts: 2
Nickname: jwalton
Registered: Oct, 2006
|
|
Re: How Will You Use XML in Years To Come?
|
Posted: Feb 9, 2008 10:19 PM
|
|
For (A) - binary files, the best fit I have seen was the old Interchange File Format of the Amiga; a structured, extensible binary format that was easy to add things to, easy to read/write, and easy to parse (including giving human-readable variants). For most structured data, this was easier to deal with than XML - both for man and machine.
ASN.1 is a decent alternative for structured binary data, too. ASN.1 essentially lets you specify an extensible schema for your data, and then data can be represented in a number of different binary encodings (DER and BER being the most common). The biggest problem with ASN.1 is a lack of good tools for using it.
|
|