DataFlex
DataFlex
SNS List Topics
See more Amazon SNS Examples
List the existing SNS topics.See SNS List Topics for more information.
Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoRest
Boolean iBTls
Integer iPort
Boolean iBAutoReconnect
Variant vAuthAws
Handle hoAuthAws
String sResponseXml
Handle hoXml
String sNotUsed
Integer i
Integer iNumTopics
String sTemp1
Integer iTemp1
Boolean bTemp1
Move False To iSuccess
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatRest)) To hoRest
If (Not(IsComObjectCreated(hoRest))) Begin
Send CreateComObject of hoRest
End
// Connect to the Amazon AWS REST server.
// such as https://sns.us-west-2.amazonaws.com/
Move True To iBTls
Move 443 To iPort
Move True To iBAutoReconnect
Get ComConnect Of hoRest "sns.us-west-2.amazonaws.com" iPort iBTls iBAutoReconnect To iSuccess
// Provide AWS credentials for the REST call.
Get Create (RefClass(cComChilkatAuthAws)) To hoAuthAws
If (Not(IsComObjectCreated(hoAuthAws))) Begin
Send CreateComObject of hoAuthAws
End
Set ComAccessKey Of hoAuthAws To "AWS_ACCESS_KEY"
Set ComSecretKey Of hoAuthAws To "AWS_SECRET_KEY"
// the region should match our URL above..
Set ComRegion Of hoAuthAws To "us-west-2"
Set ComServiceName Of hoAuthAws To "sns"
Get pvComObject of hoAuthAws to vAuthAws
Get ComSetAuthAws Of hoRest vAuthAws To iSuccess
Get ComAddQueryParam Of hoRest "Action" "ListTopics" To iSuccess
Get ComFullRequestNoBody Of hoRest "GET" "/" To sResponseXml
Get ComLastMethodSuccess Of hoRest To bTemp1
If (bTemp1 <> True) Begin
Get ComLastErrorText Of hoRest To sTemp1
Showln sTemp1
Procedure_Return
End
// A successful response will have a status code equal to 200.
Get ComResponseStatusCode Of hoRest To iTemp1
If (iTemp1 <> 200) Begin
Get ComResponseStatusCode Of hoRest To iTemp1
Showln "response status code = " iTemp1
Get ComResponseStatusText Of hoRest To sTemp1
Showln "response status text = " sTemp1
Get ComResponseHeader Of hoRest To sTemp1
Showln "response header: " sTemp1
Showln "response body: " sResponseXml
Procedure_Return
End
// Examine the successful XML response (shown below)
Get Create (RefClass(cComChilkatXml)) To hoXml
If (Not(IsComObjectCreated(hoXml))) Begin
Send CreateComObject of hoXml
End
Get ComLoadXml Of hoXml sResponseXml To iSuccess
Get ComGetXml Of hoXml To sTemp1
Showln sTemp1
// To iterate over the TopicArn's
Get ComChilkatPath Of hoXml "ListTopicsResult|Topics|$" To sNotUsed
Move 0 To i
Get ComNumChildren Of hoXml To iNumTopics
While (i < iNumTopics)
Get ComGetChild2 Of hoXml i To iSuccess
Get ComGetChildContent Of hoXml "TopicArn" To sTemp1
Showln sTemp1
Get ComGetParent2 Of hoXml To iSuccess
Move (i + 1) To i
Loop
Send ComGetRoot2 To hoXml
// A sample successful response:
// <?xml version="1.0" encoding="utf-8" ?>
// <ListTopicsResponse xmlns="http://sns.amazonaws.com/doc/2010-03-31/">
// <ListTopicsResult>
// <Topics>
// <member>
// <TopicArn>arn:aws:sns:us-west-2:957491831129:chilkat</TopicArn>
// </member>
// <member>
// <TopicArn>arn:aws:sns:us-west-2:957491831129:chilkat123</TopicArn>
// </member>
// <member>
// <TopicArn>arn:aws:sns:us-west-2:957491831129:chilkatses</TopicArn>
// </member>
// </Topics>
// </ListTopicsResult>
// <ResponseMetadata>
// <RequestId>54514f94-b07d-5f0b-9c8a-1ff85ff4ac65</RequestId>
// </ResponseMetadata>
// </ListTopicsResponse>
End_Procedure