<?xml version="1.0" encoding="UTF-8"?>
<wcs:GetCoverage xmlns:wcs="http://www.opengis.net/wcs/2.0"
xmlns:gml="http://www.opengis.net/gml/3.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.opengis.net/wcs/2.0 ../wcsAll.xsd"
service="WCS" version="2.0.0">
<wcs:CoverageId>C0001</wcs:CoverageId>
</wcs:GetCoverage>
I am trying to validate this XML file using IntelliJ IDEA however I get an error -
External resource http://www.opengis.net/gml/3.2 is not registered
Premature end of file.
I recently switched to IntelliJ, so the same piece of XML validates fine on NetBeans, the schema ../wcsAll.xsd is at the proper location.
Searching around, I found a suggestion to put "http://www.opengis.net/gml/3.2" in the list of ignore external resources; but that didn't help either.