On Tue, 2005-08-02 at 19:11 +0200, Bjoern Hoehrmann wrote:
> For RFCs see <http://www.rfc-editor.org/errata.html>.
Thanks.
Just playing.
With schema
<define name="uriTest">
<element name="test">
<oneOrMore>
<element name="uri">
<attribute name="href">
<data type="anyURI"/>
</attribute>
<data type="anyURI"/>
</element>
</oneOrMore>
</element>
</define>
The example below parses well with James Clarks relax tools and the sun
validator.
<test>
<uri href="http://www.example.com">
http://example.com
</uri>
<uri href=" http://www.example.com ">
http://www.example.com
</uri>
</test>
regards DaveP