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/03/06 01:51:41 UTC

[Bug 752] Changed - DOMImplementationImpl fails to create DocumentType with null or empty Strings

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

*** shadow/752	Wed Feb 28 11:03:15 2001
--- shadow/752.tmp.9590	Mon Mar  5 16:51:41 2001
***************
*** 2,9 ****
  | DOMImplementationImpl fails to create DocumentType with null or empty Stri |
  +----------------------------------------------------------------------------+
  |        Bug #: 752                         Product: Xerces-J                |
! |       Status: NEW                         Version: unspecified             |
! |   Resolution:                            Platform: PC                      |
  |     Severity: Normal                   OS/Version: Linux                   |
  |     Priority: Medium                    Component: DOM                     |
  +----------------------------------------------------------------------------+
--- 2,9 ----
  | DOMImplementationImpl fails to create DocumentType with null or empty Stri |
  +----------------------------------------------------------------------------+
  |        Bug #: 752                         Product: Xerces-J                |
! |       Status: RESOLVED                    Version: unspecified             |
! |   Resolution: INVALID                    Platform: PC                      |
  |     Severity: Normal                   OS/Version: Linux                   |
  |     Priority: Medium                    Component: DOM                     |
  +----------------------------------------------------------------------------+
***************
*** 44,47 ****
  DocumentType doctype2 = dom.createDocumentType ("", "", "uri://foo");
  
  // ArrayIndexOutOfBoundsException
! //<snip/>
--- 44,51 ----
  DocumentType doctype2 = dom.createDocumentType ("", "", "uri://foo");
  
  // ArrayIndexOutOfBoundsException
! //<snip/>
! 
! ------- Additional Comments From lehors@apache.org  2001-03-05 16:51 -------
! It is an error not to specify a legal qualifiedName while creating a doctype. 
! It just can't be null nor an empty string. So, the bug is in the application.