This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
The output=soap12 result returns an xml containing a non exsisting uri: http://www.w3.org/2005/10/markup-validator The problem is validation on this xml is failing becouse of non exsisting uri. A lot of php functions that read xml try to validate that the uri exsist even if they do nothing else. What is needed is to refer this uri to a real one or set up this uri to contain somthing. Seems simple, But while not fixed I need to work around this by taking the result and changing the content, writing the file again and only then processing it. Long and point less. Testing uri: http://validator.w3.org/check?uri=http://www.microsoft.com&output=soap12
http://www.w3.org/2005/10/markup-validator is a namespace URI, and there is no requirement for it to actually point to anything - it's just an identifier. If something makes an assumption that it can retrieve anything at all from a namespace URI, it needs to be fixed not to assume that, let alone try it automatically. http://www.w3.org/TR/xml-names/ http://www.rpbourret.com/xml/NamespacesFAQ.htm#q12_3