How do I append elements with duplicate names using MSXML & C++?

吃可爱长大的小学妹 提交于 2019-12-11 11:36:58

问题


I am write some code to update a XML DOM using MSXML4 & C++. I need a method that appends a child element to a parent element. The code I have written below works until the title of the child matches the title of another child under the parent. I cannot change the title of the children so I need to find a way to append them to the parent.

Can anyone provide some guidance?

// this call creates '<parent><child/></parent>'
AppendChild("/root/parent", "child");

// this call attempts to create '<parent><child/><child/></parent>' but the DOM remains     unchanged ('<parent><child/></parent>')
AppendChild("/root/parent", "child");


void AppendChild(const std::string kPathOfParent, const std::string kNameOfChild)
{
    MSXML2::IXMLDOMNodePtr pElement = m_pXmlDoc->createNode(NODE_ELEMENT, kNameOfChild.c_str(), m_xmlns.c_str());

    MSXML2::IXMLDOMNodePtr pParent = m_pXmlDoc->selectSingleNode(kPathOfParent.c_str());
    MSXML2::IXMLDOMNodePtr pNewChild = pParent->appendChild(pElement);
}

回答1:


I am not sure exactly what the problem was, but somewhere my binaries were out of step. I rebuilt the entire project via 'Clean Solution' instead of just the 'Build Solution' option. Now both children are created using the code above. It is not clear to me why I was able to step in to the code via the debugger, but the second child was never created until I cleaned the solution.

Jeff & Remy, thank-you for your comments.



来源:https://stackoverflow.com/questions/1640540/how-do-i-append-elements-with-duplicate-names-using-msxml-c

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!