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 2002/12/05 19:26:24 UTC

DO NOT REPLY [Bug 15117] New: - Multiple calls to str method of XObject do not return same result

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15117>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

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

Multiple calls to str method of XObject do not return same result

           Summary: Multiple calls to str method of XObject do not return
                    same result
           Product: XalanJ2
           Version: 2.4
          Platform: Sun
        OS/Version: Solaris
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: org.apache.xpath
        AssignedTo: xalan-dev@xml.apache.org
        ReportedBy: epark@yahoo.com


Multiple calls to str method of XObject do not return same result.

E.g., for the following code:
System.out.println("port: " + path.eval(node, "@port").str());
System.out.println("port: " + path.eval(node, "@port").str());

will actually print out, for example
port: 9001
port: null

This may be the intended behavior, but if it is, this should be documented.