I created a basic XmlDocument with one node:
XmlDocument bigDoc = new XmlDocument();
bigDoc.LoadXml("<Request></Request>");
and I'm getting another XmlDocument that I want to insert inside <Request> node.
It doesn't work for me:
 XmlNode requestNode =  bigDoc.FirstChild;
 requestNode.AppendChild(anotherXMLDocument);
It thorows an exception.
How can I insert a XmlDocument inside another XmlDocument node?
If I recall correctly that it's basically the same thing in every DOM Implementation around (.net, javascript, php etc. this should work.
XmlNode requestNode =  bigDoc.FirstChild;
requestNode.AppendChild(
    requestNode.OwnerDocument.ImportNode(
        anotherXMLDocument.DocumentElement, true));
The true (2nd argument to importNode) should mean import deep.
Public Sub rutina(ByRef Sobre As String, ByVal Cfe As String)
    'Agrega CFE al final de sobre, que puede ya contener
    'otro(s) CFE
    'Abre el sobre.
    Dim doc As New XmlDocument()
    doc.Load(Sobre)
    'Abre el xml con el nuevo CFE
    Dim doc2 As New XmlDocument()
    doc2.Load(Cfe)
    'Importa el CFE al final del sobre (antes de </Fin> )
    Dim newBook As XmlNode = doc.ImportNode(doc2.DocumentElement, True)
    doc.DocumentElement.AppendChild(newBook)
    doc.Save(Sobre)
End sub
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论