Sample code for 30+ languages & platforms
SQL Server Requires Chilkat v11.0.0+

Peoplevox WMS Authentication

See more HTTP Examples

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

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
    DECLARE @iTmp0 int
    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.

    --  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.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.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.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.Http', @http OUT

    EXEC sp_OASetProperty @http, 'FollowRedirects', 1

    DECLARE @resp int
    EXEC @hr = sp_OACreate 'Chilkat.HttpResponse', @resp OUT

    EXEC sp_OAMethod @http, 'HttpSReq', @success OUT, 'qac.peoplevox.net', 443, 1, @req, @resp
    IF @success = 0
      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
        EXEC @hr = sp_OADestroy @resp
        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
        EXEC @hr = sp_OADestroy @resp
        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.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

    --  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 @resp
    EXEC @hr = sp_OADestroy @xmlResponse


END
GO