Hello.
when i use my own xds file to xml, i got validation error message.
add xsd files in my eclipse plugin for offline environment.
<extension point="org.eclipse.wst.xml.core.catalogContributions">
<catalogContribution>
<public
publicId="httpP://www.test.com/schema/test"
uri="xsds/test-schema-1.0.xsd"
webURL="httpP://www.test.com/schema/test/test-schema-1.0.xsd">
</public>
</catalogContribution>
</extension>
if i add this to xml schemaLocation, i got error.
httpP://www.test.com/schema/test httpP://www.test.com/schema/test/test-schema-1.0.xsd
but, if add slash(/) to schemaLocation key, that's ok.
httpP://www.test.com/schema/test/ httpP://www.test.com/schema/test/test-schema-1.0.xsd
what is the problem?
* I add P to http for create this topic.