I have a program that produces rather vanilla XML documents. The first line of such generated documents is
<?xml version="1.1"?>
IE8 and Firefox both object to this, by complaining "Wrong version" and explicitly pointing to the "1.1" part.
If I patch the first line to say:
<?xml version="1.0"?>
both of them will load/show me document without complaint.
Isn't XML version 1.1 a standard? Do the browsers really not accept these? Or is the error message (like with most software error messages) simply misleading and something else is wrong?