using the SDK, I can create a queue and get the queue list – but somehow I can not send message to any of the queues. Used the following:
$sqs = new AmazonSQS();
$sqs->set_region(AmazonSQS::REGION_SINGAPORE);
$queues = $sqs->get_queue_list();
$response = $sqs->send_message($queues[0], $message);
But, I am getting the error:
[Type] => Sender
[Code] => AWS.SimpleQueueService.NonExistentQueue
[Message] => The specified queue does not exist for this wsdl version.
$queues is following: (xxxxx is a number)
Array
(
[0] => https://sqs.ap-southeast-1.amazonaws.com/1001xxxxxxxx/website-email
)
Any ideas?
I have the same problem. It seems to be a bug in SDK 1.5!
Check this: https://forums.aws.amazon.com/thread.jspa?threadID=82874&tstart=0
Quote from there:
HTH