Chilkat Examples

ChilkatHOMEAndroid™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi DLLGoJavaJavaScriptNode.jsObjective-CPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwiftTclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

SQL Server Examples
Web API Categories

AI
ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Box
CAdES
CSR
CSV
Cert Store
Certificates
Cloud Signature CSC
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)
JavaScript
MHT / HTML Email
MIME
Markdown
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
Regular Expressions
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
Secrets
SharePoint
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
X
XAdES
XML
XML Digital Signatures
XMP
Zip
curl
uncategorized

 

 

 

(SQL Server) Parse SOAP XML Response

Code to parse a SOAP XML response.

This is the SOAP response parsed by the code below:





  
    34.5
  

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
    DECLARE @hr int
    -- Important: Do not use nvarchar(max).  See the warning about using nvarchar(max).
    DECLARE @sTmp0 nvarchar(4000)
    DECLARE @success int

    DECLARE @bFound int

    DECLARE @xml int
    -- Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0
    EXEC @hr = sp_OACreate 'Chilkat.Xml', @xml OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    -- Load the XML object with the SOAP response.
    -- The XML may be loaded from a file by calling
    -- LoadXmlFile, or directly from a string by calling
    -- LoadXml.
    EXEC sp_OAMethod @xml, 'LoadXmlFile', @success OUT, 'soapResponse.xml'
    IF @success <> 1
      BEGIN
        EXEC sp_OAGetProperty @xml, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @xml
        RETURN
      END

    -- The quickest way to get a piece of data is w/ the 
    -- ChilkatPath method.
    -- To get the content of the m:Price node:
    DECLARE @strPrice nvarchar(4000)

    EXEC sp_OAMethod @xml, 'ChilkatPath', @strPrice OUT, 'soap:Body|m:GetStockPriceResponse|m:Price|*'

    PRINT 'Price = ' + @strPrice

    -- ------------------------------------
    -- Another way of doing it:

    -- Another way to get it is to navigate to the node.
    -- Navigate to soap:Body
    EXEC sp_OAMethod @xml, 'FirstChild2', @success OUT

    -- Navigate to m:GetStockPriceResponse
    -- You may call FirstChild2, or you may call GetChildWithTag2
    -- to get the Nth direct child having a given tag.
    -- In this case, get the 1st direct child having the tag
    -- "m:GetStockPriceResponse"
    -- (Indexing begins at 0, so the 1st occurrence is at index 0.)
    EXEC sp_OAMethod @xml, 'GetNthChildWithTag2', @bFound OUT, 'm:GetStockPriceResponse', 0
    IF @bFound <> 1
      BEGIN

        PRINT 'Did not find m:GetStockPriceResponse node.'
        EXEC @hr = sp_OADestroy @xml
        RETURN
      END

    -- One more to go..
    EXEC sp_OAMethod @xml, 'GetNthChildWithTag2', @bFound OUT, 'm:Price', 0
    IF @bFound <> 1
      BEGIN

        PRINT 'Did not find m:Price node.'
        EXEC @hr = sp_OADestroy @xml
        RETURN
      END

    -- The content of the "m:Price" node is "34.5"
    EXEC sp_OAGetProperty @xml, 'Content', @strPrice OUT

    PRINT 'Price = ' + @strPrice

    -- Restore the xml object's internal reference to the root
    -- of the XML document:
    EXEC sp_OAMethod @xml, 'GetRoot2', NULL

    -- ------------------------------------
    -- Another way of doing it:

    -- If you know that the node w/ the content you want to 
    -- extract is uniquely tagged (i.e. no other node has the same
    -- tag), then search for the node having the tag:
    EXEC sp_OAMethod @xml, 'SearchForTag2', @bFound OUT, @xml, 'm:Price'
    IF @bFound <> 1
      BEGIN
        -- Not found...
        EXEC @hr = sp_OADestroy @xml
        RETURN
      END

    -- The content of the "m:Price" node is "34.5"
    EXEC sp_OAGetProperty @xml, 'Content', @strPrice OUT

    PRINT 'Price = ' + @strPrice

    -- Restore the xml object's internal reference to the root
    -- of the XML document:
    EXEC sp_OAMethod @xml, 'GetRoot2', NULL

    -- ------------------------------------
    -- Another way of doing it:

    -- Again, assuming there is only a single node with the
    -- tag to be fetched:
    EXEC sp_OAMethod @xml, 'AccumulateTagContent', @strPrice OUT, 'm:Price', ''

    PRINT 'Price = ' + @strPrice

    -- There are many other possible ways of doing the same thing..

    EXEC @hr = sp_OADestroy @xml


END
GO

 

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