Page 1 of 1

Receiving erro "Open quote is expected for attribute "name"

Posted: Tue May 11, 2010 12:56 am
by altein
I'm new to XML Schema, and am trying to modify code that I acquired to generate a custom form in Acrobat. I've included the code below. I wanted to use Oxygen's designer feature for creating XML Schema so that I can modify the form, but am receiving an error for the XML Schema in the code editor, and thus can't use the designer feature of Oxygen.

The error I am receiving is "
F [Xerces] Open quote is expected for attribute "name" associated with an element type "xsd:element".

I am receiving the error at the declaration of the first element.

Below is the code.

Code: Select all


 <?xml version="1.0" encoding="UTF-8"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name=”mySubForm”>
<xsd:complexType>
<xsd:sequence>
<xsd:element name=”phone”>
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base=”xsd:string”>
<xsd:attribute name=”phoneType” use=”required”>
<xsd:simpleType>
<xsd:restriction base=”xsd:string”>
<xsd:enumeration value=”01 - Work”/>
<xsd:enumeration value=”02 - Fax”/>
<xsd:enumeration value=”03 - Cell”/>
<xsd:enumeration value=”04 - ISDN”/>
<xsd:enumeration value=”05 - Home”/>
<xsd:enumeration value=”06 - Pager”/>
<xsd:enumeration value=”07 - Home Fax”/>
<xsd:enumeration value=”08 - Other”/>
</xsd:restriction>
</xsd:simpleType>
</xsd:attribute>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:schema>
Any help would be appreciated.

Re: Receiving erro "Open quote is expected for attribute "name"

Posted: Tue May 11, 2010 11:46 am
by adrian
Hello,

Apparently you have in your schema an unsupported type of quote(”) character. Simply open the Find/Replace dialog(Ctrl + F) and replace all ” characters with " and it should work fine afterwards.

Regards,
Adrian

Re: Receiving erro "Open quote is expected for attribute "name"

Posted: Tue May 11, 2010 7:08 pm
by altein
Thank you. It works fine now.

Re: Receiving erro "Open quote is expected for attribute "na

Posted: Mon Jun 24, 2013 6:40 am
by Dark Penguin
I really thought this would correct the same issue for me, since it looked like I didn't have the correct quote character. As it turned out though, my IDE (Eclipse Juno) italicizes lvalues by default, so they're really straight-up quotation marks.

Re: Receiving erro "Open quote is expected for attribute "na

Posted: Tue Jun 25, 2013 8:30 am
by Radu
Hi,

If you have any more problems with this issue you could send us a sample document at support@oxygenxml.com

Regards,
Radu