[
Lists Home |
Date Index |
Thread Index
]
santony@bellsouth.net wrote:
>
>But when I try to validate this file against a schema, I get the error that "file://wherever_schema_is_stored/NMS-LESYG-IF_WFAC_ALL.xsd is not valid anyURI".
>( Im using xerces by the way. with JDK 1.4 )
>
>
Use three / e.g.
file:///where_ever
which is short for
file://localhost/where_ever
If the file is on PCs, make sure you use the | instead of : for the device.
E.g. file:///C|/temp/xxx.xsd
>ava:139)
>
>
>2. Which is the RFC that defines the file:// type URI syntax
>
>
>
http://www.faqs.org/rfcs/rfc1738.html
(I think there is an update to this, but it is still good?)
Cheers
Rick Jelliffe
|