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

DataFlex 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

 

 

 

(DataFlex) 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

Use ChilkatAx-9.5.0-win32.pkg

Procedure Test
    Boolean iSuccess
    Handle hoSbSoapXml
    Handle hoCrypt
    String sPasswordBase64
    Integer iNumReplacements
    Variant vReq
    Handle hoReq
    Handle hoHttp
    Variant vResp
    Handle hoResp
    Handle hoXmlResponse
    String sDetail
    String sTemp1
    Integer iTemp1
    Boolean bTemp1

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

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbSoapXml
    If (Not(IsComObjectCreated(hoSbSoapXml))) Begin
        Send CreateComObject of hoSbSoapXml
    End
    Get ComAppend Of hoSbSoapXml '<?xml version="1.0" encoding="utf-8"?>' To iSuccess
    Get ComAppend Of hoSbSoapXml '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:peop="http://www.peoplevox.net/">' To iSuccess
    Get ComAppend Of hoSbSoapXml "   <soapenv:Header/>" To iSuccess
    Get ComAppend Of hoSbSoapXml "   <soapenv:Body>" To iSuccess
    Get ComAppend Of hoSbSoapXml "      <peop:Authenticate>" To iSuccess
    Get ComAppend Of hoSbSoapXml "         <peop:clientId>PEOPLEVOX_CLIENT_ID</peop:clientId>" To iSuccess
    Get ComAppend Of hoSbSoapXml "         <peop:username>PEOPLEVOX_USERNAME</peop:username>" To iSuccess
    Get ComAppend Of hoSbSoapXml "         <peop:password>PEOPLEVOX_BASE64_PASSWORD</peop:password>" To iSuccess
    Get ComAppend Of hoSbSoapXml "      </peop:Authenticate>" To iSuccess
    Get ComAppend Of hoSbSoapXml "   </soapenv:Body>" To iSuccess
    Get ComAppend Of hoSbSoapXml "</soapenv:Envelope>" To iSuccess

    // Base64 encode the password and update the SOAP XML.
    Get Create (RefClass(cComChilkatCrypt2)) To hoCrypt
    If (Not(IsComObjectCreated(hoCrypt))) Begin
        Send CreateComObject of hoCrypt
    End
    Get ComEncodeString Of hoCrypt "PEOPLEVOX_PASSWORD" "utf-8" "base64" To sPasswordBase64
    Get ComReplace Of hoSbSoapXml "PEOPLEVOX_BASE64_PASSWORD" sPasswordBase64 To iNumReplacements

    Get Create (RefClass(cComChilkatHttpRequest)) To hoReq
    If (Not(IsComObjectCreated(hoReq))) Begin
        Send CreateComObject of hoReq
    End
    Set ComHttpVerb Of hoReq To "POST"
    Set ComSendCharset Of hoReq To True
    Set ComCharset Of hoReq To "utf-8"
    Send ComAddHeader To hoReq "Content-Type" "text/xml"
    Send ComAddHeader To hoReq "SOAPAction" "http://www.peoplevox.net/Authenticate"
    Set ComPath Of hoReq To "/PEOPLEVOX_CLIENT_ID/resources/integrationservicev4.asmx"
    Get ComGetAsString Of hoSbSoapXml To sTemp1
    Get ComLoadBodyFromString Of hoReq sTemp1 "utf-8" To iSuccess

    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End
    Set ComFollowRedirects Of hoHttp To True

    Get pvComObject of hoReq to vReq
    Get ComSynchronousRequest Of hoHttp "qac.peoplevox.net" 443 True vReq To vResp
    If (IsComObject(vResp)) Begin
        Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
        Set pvComObject Of hoResp To vResp
    End
    Get ComLastMethodSuccess Of hoHttp To bTemp1
    If (bTemp1 <> True) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // We should expect a 200 response if successful.
    Get ComStatusCode Of hoResp To iTemp1
    If (iTemp1 <> 200) Begin
        Get ComStatusCode Of hoResp To iTemp1
        Showln "Response StatusCode = " iTemp1
        Get ComStatusLine Of hoResp To sTemp1
        Showln "Response StatusLine: " sTemp1
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Procedure_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>
    // 

    Get Create (RefClass(cComChilkatXml)) To hoXmlResponse
    If (Not(IsComObjectCreated(hoXmlResponse))) Begin
        Send CreateComObject of hoXmlResponse
    End
    Get ComBodyStr Of hoResp To sTemp1
    Get ComLoadXml Of hoXmlResponse sTemp1 To iSuccess
    Get ComGetXml Of hoXmlResponse To sTemp1
    Showln sTemp1
    Send Destroy of hoResp

    // Show how to get the Detail, which must be the ClientId,SessionId
    Get ComChilkatPath Of hoXmlResponse "soap:Body|AuthenticateResponse|AuthenticateResult|Detail|*" To sDetail
    Showln "Detail = " sDetail


End_Procedure

 

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