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
(SQL Server) DNS Query CAA RecordsSee more DNS ExamplesShows how to perform a DNS query to retrieve CAA records. Note: This example requires Chilkat v9.5.0.96 or later.
-- 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 @dns int -- Use "Chilkat_9_5_0.Dns" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Dns', @dns OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END DECLARE @json int -- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT EXEC sp_OASetProperty @json, 'EmitCompact', 0 DECLARE @success int EXEC sp_OAMethod @dns, 'Query', @success OUT, 'CAA', 'zoom.us', @json IF @success = 0 BEGIN EXEC sp_OAGetProperty @dns, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @dns EXEC @hr = sp_OADestroy @json RETURN END EXEC sp_OAMethod @json, 'Emit', @sTmp0 OUT PRINT @sTmp0 -- Sample response. -- Parsing code below.. -- { -- "answer": { -- "caa": [ -- { -- "name": "zoom.us", -- "ttl": 300, -- "flags": 0, -- "tag": "iodef", -- "value": "mailto:security@zoom.us" -- }, -- { -- "name": "zoom.us", -- "ttl": 300, -- "flags": 0, -- "tag": "issue", -- "value": "amazon.com" -- }, -- { -- "name": "zoom.us", -- "ttl": 300, -- "flags": 0, -- "tag": "issue", -- "value": "digicert.com" -- }, -- { -- "name": "zoom.us", -- "ttl": 300, -- "flags": 0, -- "tag": "issue", -- "value": "godaddy.com" -- }, -- { -- "name": "zoom.us", -- "ttl": 300, -- "flags": 0, -- "tag": "issue", -- "value": "letsencrypt.org" -- }, -- { -- "name": "zoom.us", -- "ttl": 300, -- "flags": 0, -- "tag": "issue", -- "value": "pki.goog" -- }, -- { -- "name": "zoom.us", -- "ttl": 300, -- "flags": 0, -- "tag": "issue", -- "value": "sectigo.com" -- } -- ] -- } -- } -- Use this online tool to generate parsing code from sample JSON: -- Generate Parsing Code from JSON DECLARE @name nvarchar(4000) DECLARE @ttl int DECLARE @flags int DECLARE @tag nvarchar(4000) DECLARE @value nvarchar(4000) DECLARE @i int SELECT @i = 0 DECLARE @count_i int EXEC sp_OAMethod @json, 'SizeOfArray', @count_i OUT, 'answer.caa' WHILE @i < @count_i BEGIN EXEC sp_OASetProperty @json, 'I', @i EXEC sp_OAMethod @json, 'StringOf', @name OUT, 'answer.caa[i].name' EXEC sp_OAMethod @json, 'IntOf', @ttl OUT, 'answer.caa[i].ttl' EXEC sp_OAMethod @json, 'IntOf', @flags OUT, 'answer.caa[i].flags' EXEC sp_OAMethod @json, 'StringOf', @tag OUT, 'answer.caa[i].tag' EXEC sp_OAMethod @json, 'StringOf', @value OUT, 'answer.caa[i].value' SELECT @i = @i + 1 END EXEC @hr = sp_OADestroy @dns EXEC @hr = sp_OADestroy @json END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.