Sample code for 30+ languages & platforms
SQL Server

SOAP Request to fseservicetest.sanita.finanze.it with Smart Card Authentication (TS-CNS Italian Card)

See more HTTP Misc Examples

Demonstrates sending a SOAP request to fseservicetest.sanita.finanze.it with Smart Card (TS-CNS Italian Card).

Chilkat SQL Server Downloads

SQL Server
-- 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
    SELECT @success = 0

    -- This example requires the Chilkat API to have been previously unlocked.
    -- See Global Unlock Sample for sample code.

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
    IF @hr <> 0
    BEGIN
        PRINT 'Failed to create ActiveX component'
        RETURN
    END

    DECLARE @xml int
    EXEC @hr = sp_OACreate 'Chilkat.Xml', @xml OUT

    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
    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
    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 @hr = sp_OACreate 'Chilkat.HttpResponse', @resp OUT

    EXEC sp_OAMethod @http, 'HttpSReq', @success OUT, @domain, 443, 1, @req, @resp
    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
        EXEC @hr = sp_OADestroy @resp
        RETURN
      END

    DECLARE @xmlResp int
    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 @http
    EXEC @hr = sp_OADestroy @xml
    EXEC @hr = sp_OADestroy @req
    EXEC @hr = sp_OADestroy @cert
    EXEC @hr = sp_OADestroy @resp
    EXEC @hr = sp_OADestroy @xmlResp


END
GO