Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) XML Add Child TreeDemonstrates the Xml.AddChildTree method.
integer li_rc integer li_Success oleobject loo_Xml oleobject loo_Xml2 // Build the following XML: // <?xml version="1.0" encoding="utf-8"?> // <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> // <soap12:Body> // <cteDadosMsg xmlns="http://www.portalfiscal.inf.br/cte/wsdl/CTeStatusServicoV4"> // </cteDadosMsg> // </soap12:Body> // </soap12:Envelope> loo_Xml = create oleobject // Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 li_rc = loo_Xml.ConnectToNewObject("Chilkat.Xml") if li_rc < 0 then destroy loo_Xml MessageBox("Error","Connecting to COM object failed") return end if loo_Xml.Tag = "soap12:Envelope" loo_Xml.AddAttribute("xmlns:xsi","http://www.w3.org/2001/XMLSchema-instance") loo_Xml.AddAttribute("xmlns:xsd","http://www.w3.org/2001/XMLSchema") loo_Xml.AddAttribute("xmlns:soap12","http://www.w3.org/2003/05/soap-envelope") loo_Xml.UpdateAttrAt("soap12:Body|cteDadosMsg",1,"xmlns","http://www.portalfiscal.inf.br/cte/wsdl/CTeStatusServicoV4") // We want to add the following XML as a sub-tree under the "cteDadosMsg" element. // <consStatServCTe versao="4.00" xmlns="http://www.portalfiscal.inf.br/cte"> // <tpAmb>2</tpAmb> // <cUF>43</cUF> // <xServ>STATUS</xServ> // </consStatServCTe> // Build the XML to be added as a child tree. loo_Xml2 = create oleobject // Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 li_rc = loo_Xml2.ConnectToNewObject("Chilkat.Xml") loo_Xml2.Tag = "consStatServCTe" loo_Xml2.AddAttribute("versao","4.00") loo_Xml2.AddAttribute("xmlns","http://www.portalfiscal.inf.br/cte") loo_Xml2.UpdateChildContent("tpAmb","2") loo_Xml2.UpdateChildContent("cUF","43") loo_Xml2.UpdateChildContent("xServ","STATUS") // Add the child tree at the desired location: // Temporarily point to the location where we wish to add the child tree. li_Success = loo_Xml.FindChild2("soap12:Body|cteDadosMsg") if li_Success = 0 then // Restore current location to the root. loo_Xml.GetRoot2() destroy loo_Xml destroy loo_Xml2 return end if li_Success = loo_Xml.AddChildTree(loo_Xml2) // Restore the current location to the root. loo_Xml.GetRoot2() // You can see now that the XML contain the child tree: Write-Debug loo_Xml.GetXml() // <?xml version="1.0" encoding="utf-8"?> // <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"> // <soap12:Body> // <cteDadosMsg xmlns="http://www.portalfiscal.inf.br/cte/wsdl/CTeStatusServicoV4"> // <consStatServCTe versao="4.00" xmlns="http://www.portalfiscal.inf.br/cte"> // <tpAmb>2</tpAmb> // <cUF>43</cUF> // <xServ>STATUS</xServ> // </consStatServCTe> // </cteDadosMsg> // </soap12:Body> // </soap12:Envelope> destroy loo_Xml destroy loo_Xml2 |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.