Hi all, Im trying to upload my XSD, which fails on the following <xs:element type="xs:string" name="txt:TextText"> Mendix reports: Error: "Invalid 'name' attribute value 'txt:TextText': 'The ':' character, hexadecimal value 0x3A, at position 3 within the name, cannot be included in a name.'." Does anyone know how to work around it? Thanks, Jan
asked
Jan Schneider
1 answers
0
Hi Jan,
Try uploading like this <xs:element name="Text" type="xs:string" />
Here Text specifies the Attribute name and string specifies the type of attribute.