PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT
ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW
AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE
DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL
BE LOST SOMEWHERE.

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

*** shadow/2179 Thu Aug  9 07:58:16 2001
--- shadow/2179.tmp.18730       Thu Aug  9 10:20:22 2001
***************
*** 34,36 ****
--- 34,65 ----
  ------- Additional Comments From [EMAIL PROTECTED]  2001-08-09 07:58 -------
  Changed to high, so it will get noticed.  Changed to blocker as it is causing 
  severe problems.
+ 
+ ------- Additional Comments From [EMAIL PROTECTED]  2001-08-09 10:20 -------
+ Couldn't reproduce your problem using the samples.  I add the following lines in 
+ the DOMPrint sample:
+ 
+         case DOM_Node::ELEMENT_NODE :
+         {
+             // The name has to be representable without any escapes
+             *gFormatter  << XMLFormatter::NoEscapes
+                          << chOpenAngle << nodeName;
+ 
+ +        DOM_NodeList children = toWrite.getChildNodes();
+ +        unsigned int count =  children.getLength();
+ +        for (unsigned int p = 0; p < count; p++)
+ +        {
+ +          DOM_Node child = children.item(p);
+ +          if (!child.isNull() && child.getNodeType() == DOM_Node::ELEMENT_NODE)
+ +          {
+ +             cout << "\n test!: " << child.getNodeName() << endl;
+ +          }
+ +         }
+ 
+             // Output the element start tag.
+ 
+             // Output any attributes on this element
+             DOM_NamedNodeMap attributes = toWrite.getAttributes();
+ 
+ And the child node names are all printed ok.  Can you please post more detail 
+ about your application?
\ No newline at end of file

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to