Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

SQL Server Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(SQL Server) Peoplevox WMS Authentication

Provides an example of a call to the Peoplevox WMS Authenticate using SOAP 1.1.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

// 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
    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

    -- Sends a POST that looks like this:

    -- 	POST /PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx HTTP/1.1
    -- 	Content-Type: text/xml;charset=UTF-8
    -- 	SOAPAction: http://www.peoplevox.net/Authenticate
    -- 	Content-Length: (automatically computed and added by Chilkat)
    -- 	Host: qac.peoplevox.net
    -- 
    -- 	<?xml version="1.0" encoding="utf-8"?>
    -- 	<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:peop="http://www.peoplevox.net/">
    -- 	   <soapenv:Header/>
    -- 	   <soapenv:Body>
    -- 	      <peop:Authenticate>
    -- 	         <peop:clientId>PEOPLEVOX_CLIENT_ID</peop:clientId>
    -- 	         <peop:username>PEOPLEVOX_USERNAME</peop:username>
    -- 	         <peop:password>PEOPLEVOX_BASE64_PASSWORD</peop:password>
    -- 	      </peop:Authenticate>
    -- 	   </soapenv:Body>
    -- 	</soapenv:Envelope>
    -- 

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

    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '<?xml version="1.0" encoding="utf-8"?>'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:peop="http://www.peoplevox.net/">'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '   <soapenv:Header/>'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '   <soapenv:Body>'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '      <peop:Authenticate>'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '         <peop:clientId>PEOPLEVOX_CLIENT_ID</peop:clientId>'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '         <peop:username>PEOPLEVOX_USERNAME</peop:username>'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '         <peop:password>PEOPLEVOX_BASE64_PASSWORD</peop:password>'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '      </peop:Authenticate>'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '   </soapenv:Body>'
    EXEC sp_OAMethod @sbSoapXml, 'Append', @success OUT, '</soapenv:Envelope>'

    -- Base64 encode the password and update the SOAP XML.
    DECLARE @crypt int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Crypt2', @crypt OUT

    DECLARE @passwordBase64 nvarchar(4000)
    EXEC sp_OAMethod @crypt, 'EncodeString', @passwordBase64 OUT, 'PEOPLEVOX_PASSWORD', 'utf-8', 'base64'
    DECLARE @numReplacements int
    EXEC sp_OAMethod @sbSoapXml, 'Replace', @numReplacements OUT, 'PEOPLEVOX_BASE64_PASSWORD', @passwordBase64

    DECLARE @req int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.HttpRequest', @req OUT

    EXEC sp_OASetProperty @req, 'HttpVerb', 'POST'
    EXEC sp_OASetProperty @req, 'SendCharset', 1
    EXEC sp_OASetProperty @req, 'Charset', 'utf-8'
    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Content-Type', 'text/xml'
    EXEC sp_OAMethod @req, 'AddHeader', NULL, 'SOAPAction', 'http://www.peoplevox.net/Authenticate'
    EXEC sp_OASetProperty @req, 'Path', '/PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx'
    EXEC sp_OAMethod @sbSoapXml, 'GetAsString', @sTmp0 OUT
    EXEC sp_OAMethod @req, 'LoadBodyFromString', @success OUT, @sTmp0, 'utf-8'

    DECLARE @http int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Http', @http OUT

    EXEC sp_OASetProperty @http, 'FollowRedirects', 1

    DECLARE @resp int
    EXEC sp_OAMethod @http, 'SynchronousRequest', @resp OUT, 'qac.peoplevox.net', 443, 1, @req
    EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
    IF @iTmp0 <> 1
      BEGIN
        EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @sbSoapXml
        EXEC @hr = sp_OADestroy @crypt
        EXEC @hr = sp_OADestroy @req
        EXEC @hr = sp_OADestroy @http
        RETURN
      END

    -- We should expect a 200 response if successful.
    EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
    IF @iTmp0 <> 200
      BEGIN

        EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
        PRINT 'Response StatusCode = ' + @iTmp0

        EXEC sp_OAGetProperty @resp, 'StatusLine', @sTmp0 OUT
        PRINT 'Response StatusLine: ' + @sTmp0

        PRINT 'Response Header:'
        EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT
        PRINT @sTmp0
        EXEC @hr = sp_OADestroy @sbSoapXml
        EXEC @hr = sp_OADestroy @crypt
        EXEC @hr = sp_OADestroy @req
        EXEC @hr = sp_OADestroy @http
        RETURN
      END

    -- A successful response returns this XML:

    -- <?xml version="1.0" encoding="utf-8" ?>
    -- <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    --     <soap:Body>
    --         <AuthenticateResponse xmlns="http://www.peoplevox.net/">
    --             <AuthenticateResult>
    --                 <ResponseId>0</ResponseId>
    --                 <TotalCount>1</TotalCount>
    --                 <Detail>PEOPLEVOX_CLIENT_ID,7fe13431-c67f-4d52-bcfd-b60fbfa3b0ca</Detail>
    --                 <Statuses />
    --                 <ImportingQueueId>0</ImportingQueueId>
    --                 <SalesOrdersToDespatchIds />
    --             </AuthenticateResult>
    --         </AuthenticateResponse>
    --     </soap:Body>
    -- </soap:Envelope>
    -- 

    DECLARE @xmlResponse int
    EXEC @hr = sp_OACreate 'Chilkat_9_5_0.Xml', @xmlResponse OUT

    EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
    EXEC sp_OAMethod @xmlResponse, 'LoadXml', @success OUT, @sTmp0
    EXEC sp_OAMethod @xmlResponse, 'GetXml', @sTmp0 OUT
    PRINT @sTmp0
    EXEC @hr = sp_OADestroy @resp

    -- Show how to get the Detail, which must be the ClientId,SessionId
    DECLARE @detail nvarchar(4000)
    EXEC sp_OAMethod @xmlResponse, 'ChilkatPath', @detail OUT, 'soap:Body|AuthenticateResponse|AuthenticateResult|Detail|*'

    PRINT 'Detail = ' + @detail

    EXEC @hr = sp_OADestroy @sbSoapXml
    EXEC @hr = sp_OADestroy @crypt
    EXEC @hr = sp_OADestroy @req
    EXEC @hr = sp_OADestroy @http
    EXEC @hr = sp_OADestroy @xmlResponse


END
GO

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.