Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

PowerBuilder Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(PowerBuilder) Move XML Subtree to Another XML Document

Demonstrates using the InsertChildTreeBefore method to move a fragment of XML from one document to another.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

integer li_rc
oleobject loo_SrcXml
oleobject loo_DestXml
oleobject loo_CrmCust
oleobject loo_CrmSaveCust

// Source XML is this:

// <?xml version='1.0' encoding='UTF-8'?>
// <soapenv:Envelope xmlns:"soapenv="http://schemas.xmlsoap.org/soap/envelope/">
//               <soapenv:Header/>
//               <soapenv:Body>
//                             <GetCustomerResponse xmlns="http://www.midoco.de/crm" xmlns:tns="http://www.midoco.de/ws">
//                                           <CrmCustomer addresseeLine1="Max Mustermann" addresseeLine2="" changingUser="123456" >
//                                                          <CrmAddress addressId="2225355" addressTypeId="1" checkStatus="O" city="Wien" countryCode="AT" customerId="000071"/>
//                                                          <CrmPerson birthDay="30" birthMonth="8" birthYear="1977" birthday="1977-08-30T00:00:00.000+02:00" birthdayNotProvided="false"/>
//                                           </CrmCustomer>
//                           </GetCustomerResponse>
//               </soapenv:Body>
// </soapenv:Envelope>

// Build the source XML.
loo_SrcXml = create oleobject
li_rc = loo_SrcXml.ConnectToNewObject("Chilkat_9_5_0.Xml")
if li_rc < 0 then
    destroy loo_SrcXml
    MessageBox("Error","Connecting to COM object failed")
    return
end if
loo_SrcXml.Tag = "soapenv:Envelope"
loo_SrcXml.AddAttribute("xmlns:soapenv","http://schemas.xmlsoap.org/soap/envelope/")
loo_SrcXml.UpdateChildContent("soapenv:Header","")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse",1,"xmlns","http://www.midoco.de/crm")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse",1,"xmlns:tns","http://www.midoco.de/ws")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer",1,"addresseeLine1","Max Mustermann")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer",1,"addresseeLine2","")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer",1,"changingUser","123456")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",1,"addressId","2225355")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",1,"addressTypeId","1")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",1,"checkStatus","O")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",1,"city","Wien")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",1,"countryCode","AT")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",1,"customerId","000071")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",1,"birthDay","30")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",1,"birthMonth","8")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",1,"birthYear","1977")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",1,"birthday","1977-08-30T00:00:00.000+02:00")
loo_SrcXml.UpdateAttrAt("soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",1,"birthdayNotProvided","false")

// Destination XML is this:

// <?xml version="1.0" encoding="utf-8"?>
// <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
//     <SOAP-ENV:Header>
//         <m:Credentials xmlns:m="http://www.midoco.de/system">
//             <m:Login>User</m:Login>
//             <m:Password>Pass</m:Password>
//             <m:OrgUnit>ABC</m:OrgUnit>
//             <m:Locale>de_DE</m:Locale>
//         </m:MidocoCredentials>
//     </SOAP-ENV:Header>
//     <SOAP-ENV:Body>
//         <SaveCustomerRequest>
//         </SaveCustomerRequest>
//     </SOAP-ENV:Body>
// </SOAP-ENV:Envelope>

loo_DestXml = create oleobject
li_rc = loo_DestXml.ConnectToNewObject("Chilkat_9_5_0.Xml")

loo_DestXml.Tag = "SOAP-ENV:Envelope"
loo_DestXml.AddAttribute("xmlns:SOAP-ENV","http://schemas.xmlsoap.org/soap/envelope/")
loo_DestXml.AddAttribute("xmlns:SOAP-ENC","http://schemas.xmlsoap.org/soap/encoding/")
loo_DestXml.AddAttribute("xmlns:xsi","http://www.w3.org/2001/XMLSchema-instance")
loo_DestXml.AddAttribute("xmlns:xsd","http://www.w3.org/2001/XMLSchema")
loo_DestXml.UpdateAttrAt("SOAP-ENV:Header|m:Credentials",1,"xmlns:m","http://www.midoco.de/system")
loo_DestXml.UpdateChildContent("SOAP-ENV:Header|m:Credentials|m:Login","User")
loo_DestXml.UpdateChildContent("SOAP-ENV:Header|m:Credentials|m:Password","Pass")
loo_DestXml.UpdateChildContent("SOAP-ENV:Header|m:Credentials|m:OrgUnit","ABC")
loo_DestXml.UpdateChildContent("SOAP-ENV:Header|m:Credentials|m:Locale","de_DE")
loo_DestXml.UpdateChildContent("SOAP-ENV:Body|SaveCustomerRequest","")

// We want to move the "CrmCustomer" subtree in the source XML to inside the "SaveCustomerRequest" element in the destination.

// Navigate to CrmCustomer
loo_CrmCust = loo_SrcXml.FindChild("soapenv:Body|GetCustomerResponse|CrmCustomer")
if loo_SrcXml.LastMethodSuccess <> 1 then
    Write-Debug "Failed to find CrmCustomer element."
    destroy loo_SrcXml
    destroy loo_DestXml
    return
end if

// Navigate to SaveCustomerRequest
loo_CrmSaveCust = loo_DestXml.FindChild("SOAP-ENV:Body|SaveCustomerRequest")
if loo_DestXml.LastMethodSuccess <> 1 then
    Write-Debug "Failed to find SaveCustomerRequest element."
    destroy loo_SrcXml
    destroy loo_DestXml
    return
end if

// Move CrmCustomer tree to SaveCustomerRequest.
loo_CrmSaveCust.InsertChildTreeBefore(0,loo_CrmCust)

destroy loo_CrmCust
destroy loo_CrmSaveCust

// Look at the resulting destXml.  You can see the CrmCustomer subtree moved to underneath SaveCustomerRequest.
Write-Debug loo_DestXml.GetXml()

// <?xml version="1.0" encoding="utf-8"?>
// <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
//     <SOAP-ENV:Header>
//         <m:Credentials xmlns:m="http://www.midoco.de/system">
//             <m:Login>User</m:Login>
//             <m:Password>Pass</m:Password>
//             <m:OrgUnit>ABC</m:OrgUnit>
//             <m:Locale>de_DE</m:Locale>
//         </m:Credentials>
//     </SOAP-ENV:Header>
//     <SOAP-ENV:Body>
//         <SaveCustomerRequest>
//             <CrmCustomer addresseeLine1="Max Mustermann" addresseeLine2="" changingUser="123456">
//                 <CrmAddress addressId="2225355" addressTypeId="1" checkStatus="O" city="Wien" countryCode="AT" customerId="000071"/>
//                 <CrmPerson birthDay="30" birthMonth="8" birthYear="1977" birthday="1977-08-30T00:00:00.000+02:00" birthdayNotProvided="false"/>
//             </CrmCustomer>
//         </SaveCustomerRequest>
//     </SOAP-ENV:Body>
// </SOAP-ENV:Envelope>

// Look at the resulting srcXml.  The CrmCustomer subtree was removed.
Write-Debug loo_SrcXml.GetXml()

// <?xml version="1.0" encoding="utf-8"?>
// <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
//     <soapenv:Header/>
//     <soapenv:Body>
//         <GetCustomerResponse xmlns="http://www.midoco.de/crm" xmlns:tns="http://www.midoco.de/ws"/>
//     </soapenv:Body>
// </soapenv:Envelope>


destroy loo_SrcXml
destroy loo_DestXml

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.