This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 4109 - The output=soap12 result returns an xml containing a non exsisting uri
Summary: The output=soap12 result returns an xml containing a non exsisting uri
Status: RESOLVED INVALID
Alias: None
Product: Validator
Classification: Unclassified
Component: check (show other bugs)
Version: HEAD
Hardware: All All
: P2 major
Target Milestone: ---
Assignee: Olivier Thereaux
QA Contact: qa-dev tracking
URL: http://validator.w3.org/check?uri=htt...
Whiteboard:
Keywords: Usability
Depends on:
Blocks:
 
Reported: 2006-12-27 21:55 UTC by ofir
Modified: 2006-12-27 22:48 UTC (History)
0 users

See Also:


Attachments

Description ofir 2006-12-27 21:55:07 UTC
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
Comment 1 Ville Skyttä 2006-12-27 22:48:38 UTC
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