Re: [xml-dev] Support for XML 1.1?

From
David Carlisle <>
To
David Lee <>
Date
2012-10-01T21:47:00Z
ID
<>
Thread
Re: [xml-dev] Support for XML 1.1?
On 01/10/2012 20:33, David Lee wrote:
> What should a serialize do given a 1.1 data object but asked to serialize as XML 1.0 ?


Well if the object makes use of the extended set of Name characters then 
it depends on whether the xml 1.0 clients are XML 1.0 5th edition or 
not. If not, there is essentially no way to map the elements. If the 
1.00 clients are updated to 5th edition then the main disconnect is the 
control characters and there you just need to say what you do, eg map 
them all to unicode's replacement character U+FFFD.

David