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=12270>. 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=12270 Not able to transform in-memory documents ------- Additional Comments From [EMAIL PROTECTED] 2002-09-03 21:03 ------- Even for the default namespace, it's a bad idea to use createElement() -- use createElementNS(null,). The old and new calls are _not_ safely interchangable; there are some real behavioral differences, and the old calls should be considered deprecated except for pure DOM Level 1 applications (which Xalan is not). You may get away with it in this case, or may not. You definitely won't get away with trying to use the old calls to assert namespace declaration attributes. createDocument is a method on the DOMImplementation object, typically a singleton; see your DOM's docs for info on how to obtain it. (In Xerces, I believe it's DOMImplementationImpl.getDOMImplementation(), but it's been a while since I looked.)
