I'm using XML in a purely offline environment and using xsi:noNamespaceSchemaLocation to specify what schema to validate against. However just putting "schema.xsd" means that the instance document has to always be in the same folder as the schema to validate. This isn't always desirable as customers are bound to move their instance files around on disk and expect them to import correctly. If I specify a full path to the schema, it'll break as soon as a folder changes or it gets moved to a new machine or whatever. I expected it to search the PATH environmental variable to find the local schema; is there anyway of doing this as my implementation seems pretty unusable in its current state
Thanks
Thanks