You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/05/09 17:36:00 UTC

[Bug 1676] Changed - java.lang.NoSuchMethodError, if NodeIterator.nextNode()-method is called from a jsp-page

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

*** shadow/1676	Wed May  9 06:59:24 2001
--- shadow/1676.tmp.10757	Wed May  9 08:35:59 2001
***************
*** 2,11 ****
  | java.lang.NoSuchMethodError, if NodeIterator.nextNode()-method  is called  |
  +----------------------------------------------------------------------------+
  |        Bug #: 1676                        Product: XalanJ2                 |
! |       Status: NEW                         Version: 2.0.1                   |
! |   Resolution:                            Platform: PC                      |
  |     Severity: Normal                   OS/Version: Windows NT/2K           |
! |     Priority:                           Component: org.apache.xpath        |
  +----------------------------------------------------------------------------+
  |  Assigned To: xalan-dev@xml.apache.org                                     |
  |  Reported By: treiner@sony.de                                              |
--- 2,11 ----
  | java.lang.NoSuchMethodError, if NodeIterator.nextNode()-method  is called  |
  +----------------------------------------------------------------------------+
  |        Bug #: 1676                        Product: XalanJ2                 |
! |       Status: RESOLVED                    Version: 2.0.1                   |
! |   Resolution: INVALID                    Platform: PC                      |
  |     Severity: Normal                   OS/Version: Windows NT/2K           |
! |     Priority: High                      Component: org.apache.xpath        |
  +----------------------------------------------------------------------------+
  |  Assigned To: xalan-dev@xml.apache.org                                     |
  |  Reported By: treiner@sony.de                                              |
***************
*** 29,32 ****
  
    if((Node.TEXT_NODE == nodeType || Node.CDATA_SECTION_NODE == nodeType) )
  
! But don't know, if this has got any ugly side-effects
--- 29,43 ----
  
    if((Node.TEXT_NODE == nodeType || Node.CDATA_SECTION_NODE == nodeType) )
  
! But don't know, if this has got any ugly side-effects
! 
! ------- Additional Comments From garyp@firstech.com  2001-05-09 08:35 -------
! Your most likely cause of this is that you have another implementation of the 
! DOM classes in your classpath.  Carefully check the classes and .jar files in 
! the path that Tomcat is using for your servlet.  You might also include a call 
! to EnvironmentCheck 
! (http://xml.apache.org/websrc/cvsweb.cgi/~checkout~/xml-xalan/java/src/org/apach
! e/xalan/xslt/EnvironmentCheck.java?rev=1.3&content-type=text/plain) just before 
! executing your transform.  This will reveal a lot of useful information.
! 
! Gary