Trying to bind URI http://www.w3.org/XML/1998/namespace to prefix {0} (can only bind to xml)

2
Hello friends, I have just migrated my project from Mendix 6.10.7 to Mendix 7.13.1. I have an XSD which suddenly gives the error message underneath my post. Does anyone know how I can resolve this error?   Errormessage: Trying to bind URI http://www.w3.org/XML/1998/namespace to prefix " {0}" (can only bind to xml) <xsd:schema xmlns = "classified" xmlns:xsd = "http://www.w3.org/2001/XMLSchema" xmlns:xml = "http://www.w3.org/XML/1998/namespace" targetNamespace = "classified" elementFormDefault = "qualified" attributeFormDefault = "unqualified"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="catalog"> <xsd:complexType mixed="false"> <xsd:sequence> <xsd:element name="display-name" type="sharedType.LocalizedString" minOccurs="0" maxOccurs="unbounded" /> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:complexType name="sharedType.LocalizedString" mixed="false"> <xsd:simpleContent> <xsd:extension base="simpleType.Generic.String"> <xsd:attribute ref="xml:lang" /> </xsd:extension> </xsd:simpleContent> </xsd:complexType> <xsd:simpleType name="simpleType.Generic.String"> <xsd:restriction base="xsd:string" /> </xsd:simpleType> </xsd:schema> Stacktrace:  ----------------------------------------- Trying to bind URI http://www.w3.org/XML/1998/namespace to prefix "{0} " (can only bind to xml) SF_CreateNavigationExport (Export with mapping : 'Export to XML')
asked
1 answers
1

This is apparently solved in 7.17 https://docs.mendix.com/releasenotes/desktop-modeler/7.17#7172

answered