SQL Server
SQL Server
SOAP Request to fseservicetest.sanita.finanze.it with Basic Authentication
See more HTTP Misc Examples
Demonstrates sending a SOAP request to fseservicetest.sanita.finanze.it with Basic Authentication.Chilkat SQL Server Downloads
-- 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
-- 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'
-- User name and Password for Basic Authentication
EXEC sp_OASetProperty @http, 'Login', 'XXXXXXAAABBBCCC'
EXEC sp_OASetProperty @http, 'Password', 'MYPASSWORD'
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 @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 @resp
EXEC @hr = sp_OADestroy @xmlResp
END
GO