I have limited knowledge of XML/Schema files.
So this should be a fairly simple question. How do you specify a local file for the schemaLocation?
<?xml version="1.0"?>
<note
xmlns="http://www.w3schools.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3schools.com note.xsd">
...
</note>
This is a sample from www.w3.org and the part that specifies schema is in schemaLocation. I tried looking at the documentation, but how can you specify a local file?
Something like
xsi:schemaLocation="../relativepath/schemafolder not.xsd">
Thanks