You are viewing a plain text version of this content. The canonical link for it is here.
Posted to j-dev@xerces.apache.org by bu...@apache.org on 2001/02/15 18:19:36 UTC

[Bug 619] New - local attribute declaration must have name= or ref=

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=619

*** shadow/619	Thu Feb 15 09:19:36 2001
--- shadow/619.tmp.1352	Thu Feb 15 09:19:36 2001
***************
*** 0 ****
--- 1,35 ----
+ +============================================================================+
+ | local attribute declaration must have name= or ref=                        |
+ +----------------------------------------------------------------------------+
+ |        Bug #: 619                         Product: Xerces-J                |
+ |       Status: NEW                         Version: unspecified             |
+ |   Resolution:                            Platform: PC                      |
+ |     Severity: Normal                   OS/Version:                         |
+ |     Priority: Low                       Component: Schema-Structures       |
+ +----------------------------------------------------------------------------+
+ |  Assigned To: xerces-j-dev@xml.apache.org                                  |
+ |  Reported By: huffmanm@jtcsv.com                                           |
+ |      CC list: Cc:                                                          |
+ +----------------------------------------------------------------------------+
+ |          URL:                                                              |
+ +============================================================================+
+ |                              DESCRIPTION                                   |
+ A local <attribute> declaration requires a name="..." or ref="..." attribute.
+ 
+ Please see section 4.3.1, constraint 1.2.1 in the XML Schema Part 1: Structures
+ W3C Candidate Recommendation 24 October 2000 document.
+ 
+ The following schema should cause the parser to produce an error but no error 
+ is produced:
+ 
+ <?xml version="1.0"?>
+ <schema xmlns="http://www.w3.org/2000/10/XMLSchema">
+ <element name="root">
+ 	<complexType>
+ 		<attribute id="attribID" type="string"/>
+ 	</complexType>
+ </element>
+ 
+ </schema>
+ 
+ This is test case ibm4_3_1si03.