Uploaded image for project: 'XMLBeans'
  1. XMLBeans
  2. XMLBEANS-412

CLONE -Pattern facet regex requires dash - to be escaped

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • Version 2, Version 2.1, Version 2.2, Version 2.2.1, Version 2.3, Version 2.3.1
    • Version 2
    • Validator
    • None
    • Win 2000, JDK1.5

    Description

      Given the following xsd that should allow only a valid email address pattern:
      <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">

      <xsd:element name="Email" type="EmailType" />

      <xsd:simpleType name="EmailType" >
      <xsd:restriction base="xsd:token">
      <xsd:pattern value="([\.a-zA-Z0-9_-])@([a-zA-Z0-9_-])(([a-zA-Z0-9_-])*\.([a-zA-Z0-9_-]))"/>
      </xsd:restriction>
      </xsd:simpleType>

      </xsd:schema>

      Using the following simple xml instance:

      <Email>test@test.com</Email>

      Running:

      validate sample.xsd sample.xml

      generates:

      Schema invalid:
      D:\sample.xsd:7: error: pattern-regex: The regular expression '([\.a-zA-Z0-9_-])@([a-zA-Z0-9_-])(([a-zA-Z0-9_-])*\.([a-zA-Z0-9_-]))' is malformed: '-' is an invalid character range. Write '-'.

      A dash at the end or at the beginning of a character range does not have to be escaped (see http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/datatypes.html#nt-charRange "The - character is a valid character range only at the beginning or end of a - positive character group- .")

      The regular expression in the email example is a valid xsd regexp and should be accepted by the XmlBeans validator.

      Attachments

        1. ParserForXMLSchema.java
          22 kB
          Jerry Sy
        2. xmlbeans-412.patch
          2 kB
          Jerry Sy

        Issue Links

          Activity

            People

              Unassigned Unassigned
              ceszkiel Radosław Ceszkiel
              Votes:
              1 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated: