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

PowerBuilder Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(PowerBuilder) Azure ServiceBus - Request a Token from ACS

This example duplicates the HTTP POST described at Request a Token from ACS.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

integer li_rc
oleobject loo_Http
oleobject loo_Req
integer li_UseTls
oleobject loo_Resp
string ls_AccessToken

// This example assumes the Chilkat HTTP API to have been previously unlocked.
// See Global Unlock Sample for sample code.

// The goal of this example is to send the following HTTP POST:

// POST https://your-namespace-sb.accesscontrol.windows.net/WRAPv0.9/ HTTP/1.1  
// Content-Type: application/x-www-form-urlencoded  
// Host: your-namespace-sb.accesscontrol.windows.net  
// Content-Length: 136  
// Expect: 100-continue  
// Connection: Keep-Alive  
// 
// wrap_name=owner&wrap_password=r8LuxCKD6DWY8auQcFql4M7euH2UuhcLcV1TaJTqNNE%3d&wrap_scope=http%3a%2f%2fyour-namespace.servicebus.windows.net%2f
// 

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if
loo_Req = create oleobject
li_rc = loo_Req.ConnectToNewObject("Chilkat_9_5_0.HttpRequest")

// Build the HTTP request...
loo_Req.HttpVerb = "POST"
loo_Req.Path = "/WRAPv0.9/"
loo_Req.ContentType = "application/x-www-form-urlencoded"

// Adding the Connection: Keep-Alive is optional.  It only makes sense if the intent is to send
// additional requests to the same domain (your-namespace-sb.accesscontrol.windows.net) within a reasonable time period.
loo_Req.AddHeader("Connection","Keep-Alive")

// The Expect: 100-continue really isn't necessary.  This only makes sense when a response is large.  The "100-continue"
// provides a means for the HTTP server to alert the HTTP client that the request failed before sending the full response.
// In this case, the response size is small, so there's no real need to bother with an "Expect: 100-continue".
// If desired, it would be added just like any request header:
loo_Req.AddHeader("Expect","100-continue")

// Note: The following headers are automatically added by Chilkat:  Content-Type, Host, Content-Length.
// The application should NOT set these directly.

// Add the query parameters
// When URL decoded and split, the query params look like this:
// 
// 	wrap_name=owner
// 	wrap_password=r8LuxCKD6DWY8auQcFql4M7euH2UuhcLcV1TaJTqNNE=
// 	wrap_scope=http://your-namespace.servicebus.windows.net/

// Pass the URL-decoded values to AddParam.
loo_Req.AddParam("wrap_name","owner")
loo_Req.AddParam("wrap_password","r8LuxCKD6DWY8auQcFql4M7euH2UuhcLcV1TaJTqNNE=")
loo_Req.AddParam("wrap_scope","http://your-namespace.servicebus.windows.net/")

// OK.. our request is properly setup.  Now send to the web server at your-namespace-sb.accesscontrol.windows.net.
// We want https (i.e. SSL/TLS), so the port would be 443.
li_UseTls = 1
loo_Resp = loo_Http.SynchronousRequest("your-namespace-sb.accesscontrol.windows.net",443,li_UseTls,loo_Req)
if loo_Http.LastMethodSuccess <> 1 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_Req
    return
end if

// A successful response will have a status code = 200.
if loo_Resp.StatusCode <> 200 then
    Write-Debug "Response Status Code = " + string(loo_Resp.StatusCode)
    Write-Debug loo_Resp.BodyStr
    Write-Debug "Failed."
    destroy loo_Resp
    destroy loo_Http
    destroy loo_Req
    return
end if

// A successful response will contain a URL encoded param string such as the following:

// 	wrap_access_token=net.windows.servicebus.action%3d
// 	Listen%252cManage%252cSend%26
// 	http%253a%252f%252fschemas.microsoft.com%252faccesscontrolservice%252f2010%252f07%252fclaims%252fidentityprovider%3d
// 	https%253a%252f%252fyour-namespace-sb.accesscontrol.windows.net%252f%26
// 	Audience%3dhttp%253a%252f%252fyour-namespace.servicebus.windows.net%252f%26
// 	ExpiresOn%3d1404435127%26
// 	Issuer%3dhttps%253a%252f%252fyour-namespace-sb.accesscontrol.windows.net%252f%26
// 	HMACSHA256%3dF%252bBoXUoifWdT%252fly8Oic9V1oPBbc3KmXKbSJbVhGSopU%253d&
// 	wrap_access_token_expires_in=10799
// 

// The UrlEncParamValue method can be used to extract individual param values by name.
// There are two params in the response: wrap_access_token and wrap_access_token_expires.
// (It's a bit confusing because the value of the wrap_access_token is itself a URL encoded 
// param string.)

// Get the access token from the response:
ls_AccessToken = loo_Resp.UrlEncParamValue(loo_Resp.BodyStr,"wrap_access_token")

Write-Debug "Your access token is the following param string:"
Write-Debug ls_AccessToken

destroy loo_Resp


destroy loo_Http
destroy loo_Req

 

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