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
(Unicode C) Move XML Subtree to Another XML DocumentDemonstrates using the InsertChildTreeBefore method to move a fragment of XML from one document to another.
#include <C_CkXmlW.h> void ChilkatSample(void) { HCkXmlW srcXml; HCkXmlW destXml; HCkXmlW crmCust; HCkXmlW 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. srcXml = CkXmlW_Create(); CkXmlW_putTag(srcXml,L"soapenv:Envelope"); CkXmlW_AddAttribute(srcXml,L"xmlns:soapenv",L"http://schemas.xmlsoap.org/soap/envelope/"); CkXmlW_UpdateChildContent(srcXml,L"soapenv:Header",L""); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse",TRUE,L"xmlns",L"http://www.midoco.de/crm"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse",TRUE,L"xmlns:tns",L"http://www.midoco.de/ws"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer",TRUE,L"addresseeLine1",L"Max Mustermann"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer",TRUE,L"addresseeLine2",L""); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer",TRUE,L"changingUser",L"123456"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",TRUE,L"addressId",L"2225355"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",TRUE,L"addressTypeId",L"1"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",TRUE,L"checkStatus",L"O"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",TRUE,L"city",L"Wien"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",TRUE,L"countryCode",L"AT"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmAddress",TRUE,L"customerId",L"000071"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",TRUE,L"birthDay",L"30"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",TRUE,L"birthMonth",L"8"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",TRUE,L"birthYear",L"1977"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",TRUE,L"birthday",L"1977-08-30T00:00:00.000+02:00"); CkXmlW_UpdateAttrAt(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer|CrmPerson",TRUE,L"birthdayNotProvided",L"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> destXml = CkXmlW_Create(); CkXmlW_putTag(destXml,L"SOAP-ENV:Envelope"); CkXmlW_AddAttribute(destXml,L"xmlns:SOAP-ENV",L"http://schemas.xmlsoap.org/soap/envelope/"); CkXmlW_AddAttribute(destXml,L"xmlns:SOAP-ENC",L"http://schemas.xmlsoap.org/soap/encoding/"); CkXmlW_AddAttribute(destXml,L"xmlns:xsi",L"http://www.w3.org/2001/XMLSchema-instance"); CkXmlW_AddAttribute(destXml,L"xmlns:xsd",L"http://www.w3.org/2001/XMLSchema"); CkXmlW_UpdateAttrAt(destXml,L"SOAP-ENV:Header|m:Credentials",TRUE,L"xmlns:m",L"http://www.midoco.de/system"); CkXmlW_UpdateChildContent(destXml,L"SOAP-ENV:Header|m:Credentials|m:Login",L"User"); CkXmlW_UpdateChildContent(destXml,L"SOAP-ENV:Header|m:Credentials|m:Password",L"Pass"); CkXmlW_UpdateChildContent(destXml,L"SOAP-ENV:Header|m:Credentials|m:OrgUnit",L"ABC"); CkXmlW_UpdateChildContent(destXml,L"SOAP-ENV:Header|m:Credentials|m:Locale",L"de_DE"); CkXmlW_UpdateChildContent(destXml,L"SOAP-ENV:Body|SaveCustomerRequest",L""); // We want to move the "CrmCustomer" subtree in the source XML to inside the "SaveCustomerRequest" element in the destination. // Navigate to CrmCustomer crmCust = CkXmlW_FindChild(srcXml,L"soapenv:Body|GetCustomerResponse|CrmCustomer"); if (CkXmlW_getLastMethodSuccess(srcXml) != TRUE) { wprintf(L"Failed to find CrmCustomer element.\n"); CkXmlW_Dispose(srcXml); CkXmlW_Dispose(destXml); return; } // Navigate to SaveCustomerRequest crmSaveCust = CkXmlW_FindChild(destXml,L"SOAP-ENV:Body|SaveCustomerRequest"); if (CkXmlW_getLastMethodSuccess(destXml) != TRUE) { wprintf(L"Failed to find SaveCustomerRequest element.\n"); CkXmlW_Dispose(srcXml); CkXmlW_Dispose(destXml); return; } // Move CrmCustomer tree to SaveCustomerRequest. CkXmlW_InsertChildTreeBefore(crmSaveCust,0,crmCust); CkXmlW_Dispose(crmCust); CkXmlW_Dispose(crmSaveCust); // Look at the resulting destXml. You can see the CrmCustomer subtree moved to underneath SaveCustomerRequest. wprintf(L"%s\n",CkXmlW_getXml(destXml)); // <?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. wprintf(L"%s\n",CkXmlW_getXml(srcXml)); // <?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> CkXmlW_Dispose(srcXml); CkXmlW_Dispose(destXml); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.