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) palena.sii.cl getToken SOAP RequestDemonstrates how to call getToken SOAP request at palena.sii.cl
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int DECLARE @iTmp0 int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) -- This example requires the Chilkat API to have been previously unlocked. -- See Global Unlock Sample for sample code. DECLARE @success int -- Create the XML to be signed... DECLARE @xmlToSign int -- Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Xml', @xmlToSign OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END EXEC sp_OASetProperty @xmlToSign, 'Tag', 'getToken' -- This is the seed obtained from palena.sii.cl getSeed EXEC sp_OAMethod @xmlToSign, 'UpdateChildContent', NULL, 'item|Semilla', '033878794660' DECLARE @gen int -- Use "Chilkat_9_5_0.XmlDSigGen" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.XmlDSigGen', @gen OUT EXEC sp_OASetProperty @gen, 'SigLocation', 'getToken' EXEC sp_OASetProperty @gen, 'SigLocationMod', 0 EXEC sp_OASetProperty @gen, 'SigNamespacePrefix', '' EXEC sp_OASetProperty @gen, 'SigNamespaceUri', 'http://www.w3.org/2000/09/xmldsig#' EXEC sp_OASetProperty @gen, 'SignedInfoCanonAlg', 'EXCL_C14N' EXEC sp_OASetProperty @gen, 'SignedInfoDigestMethod', 'sha1' EXEC sp_OAMethod @gen, 'AddSameDocRef', @success OUT, '', 'sha1', '', '', '' -- Provide a certificate + private key. (PFX password is test123) DECLARE @cert int -- Use "Chilkat_9_5_0.Cert" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Cert', @cert OUT EXEC sp_OAMethod @cert, 'LoadPfxFile', @success OUT, 'qa_data/pfx/cert_test123.pfx', 'test123' IF @success <> 1 BEGIN EXEC sp_OAGetProperty @cert, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @xmlToSign EXEC @hr = sp_OADestroy @gen EXEC @hr = sp_OADestroy @cert RETURN END EXEC sp_OAMethod @gen, 'SetX509Cert', @success OUT, @cert, 1 EXEC sp_OASetProperty @gen, 'KeyInfoType', 'X509Data' EXEC sp_OASetProperty @gen, 'X509Type', 'Certificate' -- Load XML to be signed... DECLARE @sbXml int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbXml OUT EXEC sp_OASetProperty @xmlToSign, 'EmitXmlDecl', 0 EXEC sp_OAMethod @xmlToSign, 'GetXmlSb', @success OUT, @sbXml EXEC sp_OASetProperty @gen, 'Behaviors', 'IndentedSignature' -- Sign the XML... EXEC sp_OAMethod @gen, 'CreateXmlDSigSb', @success OUT, @sbXml IF @success <> 1 BEGIN EXEC sp_OAGetProperty @gen, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @xmlToSign EXEC @hr = sp_OADestroy @gen EXEC @hr = sp_OADestroy @cert EXEC @hr = sp_OADestroy @sbXml RETURN END -- ----------------------------------------------- DECLARE @http int -- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT DECLARE @responseStatusCode int EXEC sp_OASetProperty @http, 'UncommonOptions', 'AllowEmptyHeaders' EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'SOAPAction', '' EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'text/xml; charset=utf-8' -- The endpoint for this soap service is: DECLARE @endPoint nvarchar(4000) SELECT @endPoint = 'https://palena.sii.cl/DTEWS/GetTokenFromSeed.jws' -- Send the following SOAP XML -- <soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:def="http://DefaultNamespace"> -- <soapenv:Header/> -- <soapenv:Body> -- <def:getToken soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> -- <pszXml>SIGNED_XML_GOES_HERE</pszXml> -- </def:getToken> -- </soapenv:Body> -- </soapenv:Envelope> DECLARE @xml int -- Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Xml', @xml OUT EXEC sp_OASetProperty @xml, 'Tag', 'soapenv:Envelope' EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:xsi', 'http://www.w3.org/2001/XMLSchema-instance' EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:xsd', 'http://www.w3.org/2001/XMLSchema' EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:soapenv', 'http://schemas.xmlsoap.org/soap/envelope/' EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:def', 'http://DefaultNamespace' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Header', '' EXEC sp_OAMethod @xml, 'UpdateAttrAt', @success OUT, 'soapenv:Body|def:getToken', 1, 'soapenv:encodingStyle', 'http://schemas.xmlsoap.org/soap/encoding/' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|def:getToken|pszXml', 'SIGNED_XML_GOES_HERE' -- We must replace the "SIGNED_XML_GOES_HERE" with the exact contents of the signed XML to ensure the signed XML is not modified in any way. DECLARE @sbSoapXml int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbSoapXml OUT EXEC sp_OAMethod @xml, 'GetXml', @sTmp0 OUT EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, @sTmp0 DECLARE @numReplaced int EXEC sp_OAMethod @sbXml, 'Replace', @numReplaced OUT, '&', '&' EXEC sp_OAMethod @sbXml, 'Replace', @numReplaced OUT, '>', '>' EXEC sp_OAMethod @sbXml, 'Replace', @numReplaced OUT, '<', '<' EXEC sp_OAMethod @sbXml, 'Replace', @numReplaced OUT, '"', '"' EXEC sp_OAMethod @sbXml, 'GetAsString', @sTmp0 OUT EXEC sp_OAMethod @sbSoapXml, 'Replace', @numReplaced OUT, 'SIGNED_XML_GOES_HERE', @sTmp0 DECLARE @resp int EXEC sp_OAMethod @sbSoapXml, 'GetAsString', @sTmp0 OUT EXEC sp_OAMethod @http, 'PostXml', @resp OUT, @endPoint, @sTmp0, 'utf-8' EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT IF @iTmp0 <> 1 BEGIN EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 PRINT 'LastHeader:' EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @xmlToSign EXEC @hr = sp_OADestroy @gen EXEC @hr = sp_OADestroy @cert EXEC @hr = sp_OADestroy @sbXml EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @xml EXEC @hr = sp_OADestroy @sbSoapXml RETURN END EXEC sp_OAGetProperty @resp, 'StatusCode', @responseStatusCode OUT PRINT 'Response Status Code: ' + @responseStatusCode -- You may examine the exact HTTP header sent with the POST like this: PRINT 'LastHeader:' EXEC sp_OAGetProperty @http, 'LastHeader', @sTmp0 OUT PRINT @sTmp0 -- Examine the XML returned by the web service: PRINT 'XML Response:' DECLARE @xmlResp int -- Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Xml', @xmlResp OUT EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT EXEC sp_OAMethod @xmlResp, 'LoadXml', @success OUT, @sTmp0 EXEC sp_OAMethod @xmlResp, 'GetXml', @sTmp0 OUT PRINT @sTmp0 -- Use this online tool to generate parsing code from response XML: -- Generate Parsing Code from XML EXEC @hr = sp_OADestroy @resp EXEC @hr = sp_OADestroy @xmlToSign EXEC @hr = sp_OADestroy @gen EXEC @hr = sp_OADestroy @cert EXEC @hr = sp_OADestroy @sbXml EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @xml EXEC @hr = sp_OADestroy @sbSoapXml EXEC @hr = sp_OADestroy @xmlResp END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.