Unicode C
Unicode C
SQS Send Message
See more Amazon SQS Examples
Note: This example requires a patch to work properly. It requires Chilkat v9.5.0.61, which can be obtained upon request to support@chilkatsoft.comDelivers a message to the specified queue. With Amazon SQS, you now have the ability to send large payload messages that are up to 256KB (262,144 bytes) in size.
See SQS SendMessage or detailed information.
Chilkat Unicode C Downloads
#include <C_CkRestW.h>
#include <C_CkAuthAwsW.h>
#include <C_CkXmlW.h>
void ChilkatSample(void)
{
BOOL success;
HCkRestW rest;
BOOL bTls;
int port;
BOOL bAutoReconnect;
HCkAuthAwsW authAws;
const wchar_t *responseXml;
HCkXmlW xml;
success = FALSE;
// Note: This example requires a patch to work properly.
// It requires Chilkat v9.5.0.61, which can be obtained upon request to support@chilkatsoft.com
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
rest = CkRestW_Create();
// Connect to the Amazon AWS REST server.
// such as https://sqs.us-west-2.amazonaws.com/
bTls = TRUE;
port = 443;
bAutoReconnect = TRUE;
success = CkRestW_Connect(rest,L"sqs.us-west-2.amazonaws.com",port,bTls,bAutoReconnect);
// Provide AWS credentials for the REST call.
authAws = CkAuthAwsW_Create();
CkAuthAwsW_putAccessKey(authAws,L"AWS_ACCESS_KEY");
CkAuthAwsW_putSecretKey(authAws,L"AWS_SECRET_KEY");
// the region should match our URL above..
CkAuthAwsW_putRegion(authAws,L"us-west-2");
CkAuthAwsW_putServiceName(authAws,L"sqs");
CkRestW_SetAuthAws(rest,authAws);
CkRestW_AddQueryParam(rest,L"Action",L"SendMessage");
CkRestW_AddQueryParam(rest,L"MessageBody",L"This is the message body which can be up to 256K in size.");
CkRestW_AddQueryParam(rest,L"MessageAttribute.1.Name",L"test_attribute_name_1");
CkRestW_AddQueryParam(rest,L"MessageAttribute.1.Value.StringValue",L"test_attribute_value_1");
CkRestW_AddQueryParam(rest,L"MessageAttribute.1.Value.DataType",L"String");
CkRestW_AddQueryParam(rest,L"MessageAttribute.2.Name",L"test_attribute_name_2");
CkRestW_AddQueryParam(rest,L"MessageAttribute.2.Value.StringValue",L"test_attribute_value_2");
CkRestW_AddQueryParam(rest,L"MessageAttribute.2.Value.DataType",L"String");
// Use the actual path part of your SQS queue URL here:
responseXml = CkRestW_fullRequestFormUrlEncoded(rest,L"POST",L"/123456789123/chilkatTest");
if (CkRestW_getLastMethodSuccess(rest) != TRUE) {
wprintf(L"%s\n",CkRestW_lastErrorText(rest));
CkRestW_Dispose(rest);
CkAuthAwsW_Dispose(authAws);
return;
}
xml = CkXmlW_Create();
// A successful response will have a status code equal to 200.
if (CkRestW_getResponseStatusCode(rest) != 200) {
wprintf(L"request header = %s\n",CkRestW_lastRequestHeader(rest));
wprintf(L"response status code = %d\n",CkRestW_getResponseStatusCode(rest));
wprintf(L"response status text = %s\n",CkRestW_responseStatusText(rest));
wprintf(L"response header: %s\n",CkRestW_responseHeader(rest));
CkXmlW_LoadXml(xml,responseXml);
wprintf(L"%s\n",CkXmlW_getXml(xml));
CkRestW_Dispose(rest);
CkAuthAwsW_Dispose(authAws);
CkXmlW_Dispose(xml);
return;
}
// Examine the successful XML response.
CkXmlW_LoadXml(xml,responseXml);
wprintf(L"%s\n",CkXmlW_getXml(xml));
wprintf(L"----\n");
// A successful response looks like this:
// <?xml version="1.0" encoding="utf-8" ?>
// <SendMessageResponse>
// <SendMessageResult>
// <MD5OfMessageBody>
// fafb00f5732ab283681e124bf8747ed1
// </MD5OfMessageBody>
// <MD5OfMessageAttributes>
// 3ae8f24a165a8cedc005670c81a27295
// </MD5OfMessageAttributes>
// <MessageId>
// 5fea7756-0ea4-451a-a703-a558b933e274
// </MessageId>
// </SendMessageResult>
// <ResponseMetadata>
// <RequestId>
// 27daac76-34dd-47df-bd01-1f6e873584a0
// </RequestId>
// </ResponseMetadata>
// </SendMessageResponse>
// Get some values from the response XML:
wprintf(L"Body: %s\n",CkXmlW_chilkatPath(xml,L"SendMessageResult|MD5OfMessageBody|*"));
wprintf(L"MessageId: %s\n",CkXmlW_chilkatPath(xml,L"SendMessageResult|MessageId|*"));
wprintf(L"RequestId: %s\n",CkXmlW_chilkatPath(xml,L"ResponseMetadata|RequestId|*"));
CkRestW_Dispose(rest);
CkAuthAwsW_Dispose(authAws);
CkXmlW_Dispose(xml);
}