Xbase++
Xbase++
REST through SOCKS Proxy
See more REST Examples
Demonstrates how to connect through a SOCKS proxy to make REST API calls.Chilkat Xbase++ Downloads
LOCAL nSuccess
LOCAL oRest
LOCAL oSocket
LOCAL nBTls
LOCAL nPort
LOCAL nMaxWaitMs
LOCAL oAuthAws
LOCAL cResponseXml
LOCAL oXml
nSuccess := 0
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
// This example connects to a REST server through a SOCKS proxy.
// It will connect to the Amazon AWS service for this example.
oRest := CreateObject("Chilkat.Rest")
oSocket := CreateObject("Chilkat.Socket")
// Set the SOCKS proxy domain or IP address, port, and SOCKS version number (4 or 5)
oSocket:SocksHostname := "192.168.1.100"
oSocket:SocksPort := 1080
oSocket:SocksVersion := 5
// Other properties exist for specifying a SOCKS proxy login and password,
// but these are not used in this example.
// Connect through the HTTP proxy to the Amazon AWS server for the S3 service.
nBTls := 1
nPort := 443
nMaxWaitMs := 5000
nSuccess := oSocket:Connect("s3.amazonaws.com", nPort, nBTls, nMaxWaitMs)
IF (nSuccess != 1)
? "Connect Failure Error Code: " + Str(oSocket:ConnectFailReason)
? oSocket:LastErrorText
oRest:destroy()
oSocket:destroy()
RETURN
ENDIF
// Use the proxied TLS connection:
nSuccess := oRest:UseConnection(oSocket, 1)
IF (nSuccess != 1)
? oRest:LastErrorText
oRest:destroy()
oSocket:destroy()
RETURN
ENDIF
// Provide AWS credentials for the REST call.
oAuthAws := CreateObject("Chilkat.AuthAws")
oAuthAws:AccessKey := "AWS_ACCESS_KEY"
oAuthAws:SecretKey := "AWS_SECRET_KEY"
oAuthAws:ServiceName := "s3"
nSuccess := oRest:SetAuthAws(oAuthAws)
// List all buckets for the account...
cResponseXml := oRest:FullRequestNoBody("GET", "/")
IF (oRest:LastMethodSuccess != 1)
? oRest:LastErrorText
oRest:destroy()
oSocket:destroy()
oAuthAws:destroy()
RETURN
ENDIF
oXml := CreateObject("Chilkat.Xml")
nSuccess := oXml:LoadXml(cResponseXml)
// Show the full XML returned.
? oXml:GetXml()
// Iterate over the buckets, showing each bucket name.
nSuccess := oXml:FindChild2("Buckets")
IF (oXml:FirstChild2() == 1)
? oXml:GetChildContent("Name")
DO WHILE (oXml:NextSibling2() == 1)
? oXml:GetChildContent("Name")
ENDDO
ENDIF
// Move the internal pointer back to the root node.
oXml:GetRoot2()
oRest:destroy()
oSocket:destroy()
oAuthAws:destroy()
oXml:destroy()