Skip to main content

When i am trying to read the XML-file "bomen-elburg_short" I get this error: XML Parser error: 'Error in input dataset:'bomen-elburg_short.xml' line:23 column:46 message:prefix 'gml' can not be resolved to namespace URI'

Whats going wrong, and how can i solve this?

Hi @jpdenboer​ 

When opening the file in Notepad ++ (with XML Tools), I get the following error 

error says:

XML Parsing error at line 46:

Namespace prefix gml on coordinates is not defined

The XML is not XML Namespace valid.

Line 46 looks like:

<GEOMETRIE><gml:Point srsName="EPSG:28992"><gml:coordinates>184839.23,494868.87</gml:coordinates></gml:Point></GEOMETRIE>

The gml prefix was never bound to an xml namespace. 

Is this file a GML file? 

May be try adding xmlns:gml="http://www.opengis.net/gml" to ROOT

 


Reply