I try to set an attribute in a XML node using MSXML. IXMLDOMElement alone has the member function setatrribute. So i got the document element.

pXMLDocumentElement -> get_documentElement (& pElement );
pElement -> selectSingleNode ( nodePathString ,& pNode );
.
.
.
pElement -> setAttribute ( bstr , var );

I selected the required node inwhich the attribute has to be set using selectsinglenode funcion. after selecting the required node, i tried to set attribute.

But the PElement pointer doesnot shift to the required node. it stayed on the root node. Result: added the attribute in root itself

Is ther any way, I can shift my PElement to the node resulted in selectsinglenode function. so that i can set the attribute,.

link

feedback

2 Answers

up vote 1 down vote accepted

I think you have to use the setAttributeNode API on your pNode pointer.

While you are at it read this tutorial on using MSXML. And after you have the basics covered this blog.

link
feedback

I think you just use the funcion get_documentElement, then you will get the root node in the DOM, the root poniter is stored in the pElement, and you call the setAttribute function by using the pointer pElement,so the attribute of root will always be set

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.