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) SOAP Request to fseservicetest.sanita.finanze.it with Smart Card Authentication (TS-CNS Italian Card)Demonstrates sending a SOAP request to fseservicetest.sanita.finanze.it with Smart Card (TS-CNS Italian Card).
-- 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 @http int -- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END DECLARE @xml int -- Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Xml', @xml OUT DECLARE @success int SELECT @success = 0 -- -------------------------------------------------------------------------------- -- Also see Chilkat's Online WSDL Code Generator -- to generate code and SOAP Request and Response XML for each operation in a WSDL. -- -------------------------------------------------------------------------------- -- Create the SOAP envelope... EXEC sp_OASetProperty @xml, 'Tag', 'soapenv:Envelope' EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:soapenv', 'http://schemas.xmlsoap.org/soap/envelope/' EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:stat', 'http://statoconsensirichiesta.xsd.fse.ini.finanze.it' EXEC sp_OAMethod @xml, 'AddAttribute', @success OUT, 'xmlns:tip', 'http://tipodatistatoconsensi.xsd.fse.ini.finanze.it' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Header', '' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoUtente', 'XXXXXXAAABBBCCC' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:pinCode', '...' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoOrganizzazione', '999' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:StrutturaUtente', '123456789' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:RuoloUtente', 'ZZZ' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:ContestoOperativo', '' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoAssistitoGenitoreTutore', '' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:PresaInCarico', 'true' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:TipoAttivita', 'READ' EXEC sp_OAMethod @xml, 'UpdateChildContent', NULL, 'soapenv:Body|stat:StatoConsensiRichiesta|stat:IdentificativoAssistitoConsenso', 'ABCDEFGHIJKLM' DECLARE @soapEnvelope nvarchar(4000) EXEC sp_OAMethod @xml, 'GetXml', @soapEnvelope OUT DECLARE @domain nvarchar(4000) SELECT @domain = 'fseservicetest.sanita.finanze.it' DECLARE @path nvarchar(4000) SELECT @path = '/FseInsServicesWeb/services/fseStatoConsensi' DECLARE @req int -- Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.HttpRequest', @req OUT EXEC sp_OASetProperty @req, 'HttpVerb', 'POST' EXEC sp_OASetProperty @req, 'SendCharset', 0 EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Content-Type', 'application/soap+xml; charset=utf-8' EXEC sp_OASetProperty @req, 'Path', @path EXEC sp_OAMethod @req, 'LoadBodyFromString', @success OUT, @soapEnvelope, 'utf-8' -- Load the default certificate from the smartcard currently in the reader. -- (This assumes only one reader with one smartcard containing one certificate. -- If the situation is more complex, you can do it with Chilkat, but it requires -- using the Chilkat certificate store object to get the desired certificate -- from the desired smart card.) -- -- Note: This is for Windows-only. 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, 'LoadFromSmartcard', @success OUT, '' IF @success = 0 BEGIN EXEC sp_OAGetProperty @cert, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @xml EXEC @hr = sp_OADestroy @req EXEC @hr = sp_OADestroy @cert RETURN END -- Tell the Chilkat HTTP object to use the certificate for client authentication. EXEC sp_OAMethod @http, 'SetSslClientCert', @success OUT, @cert IF @success = 0 BEGIN EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @xml EXEC @hr = sp_OADestroy @req EXEC @hr = sp_OADestroy @cert RETURN END EXEC sp_OASetProperty @http, 'TlsVersion', 'TLS 1.1' DECLARE @resp int EXEC sp_OAMethod @http, 'SynchronousRequest', @resp OUT, @domain, 443, 1, @req EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT IF @iTmp0 = 0 BEGIN EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @xml EXEC @hr = sp_OADestroy @req EXEC @hr = sp_OADestroy @cert RETURN END 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 EXEC @hr = sp_OADestroy @resp EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @xml EXEC @hr = sp_OADestroy @req EXEC @hr = sp_OADestroy @cert EXEC @hr = sp_OADestroy @xmlResp END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.