Amazon Simple Notification Service (Amazon SNS) is a web service that makes it easy to set up, operate, and send notifications from the cloud. It provides developers with a highly scalable, flexible, and cost-effective capability to publish messages from an application and immediately deliver them ...

learn more… | top users | synonyms

0
votes
1answer
17 views

Leader Election over SQS/SNS?

I'm using the bully algorithm to perform leader election among a cluster of machines. I plan to use a topic as the communication medium. Has anyone tried using SQS/SNS for something like the bully ...
0
votes
2answers
50 views

cannot load such file — aws-sdk and uninitialized constant::AWS

Iam trying to include require files require 'aws-sdk' in controller. I dont know is it possible or not. I included the secret access key and access key id in config/aws.rb file as follows ...
0
votes
0answers
46 views

Implemeting amazon Simple nodification service in RUBY

Am trying to implement amazon SNS using ruby. I want to create a topic,delete a topic,subscribe to a topic,publish to a topic.These are included in the following code. #!/usr/bin/env ruby require ...
1
vote
0answers
45 views

Integrating Amazon SNS with ServiceStack

I'm developing a suite of ETL-style apps which will link cloud-based systems with on-premise systems using Amazon SNS and Amzazon SQS along with some restful services. SNS allows you to set-up an HTTP ...
0
votes
2answers
81 views

Use Amazon Simple Notification service SNS with ruby [closed]

I need to to use Amazon Simple Notification service with ruby. How it is possible?I have no idea about this and don't know how to Use SNS with ruby.
0
votes
1answer
19 views

What happens to existing messages in SQS when I add HTTP SNS subscription?

I have an existing SQS with X number of messages. I add new SNS HTTP subscription for it. Will my HTTP service receive all of the existing messages from the queue? Thanks!
0
votes
0answers
39 views

How to get email messageId when using Amazon SES in Django?

I am using Amazon SNS to send notification when an email bounces. I need to store email messageId when sending the email, so that I can match it with notification and see which email delivery failed. ...
0
votes
0answers
36 views

Manage SMTP.com bounces using Amazon SES

if different business units use different softwares to send email, can I use SNS to consolidate bounces? e.g. if one dept is sending with smtp.com (for Marketing mails) and I use SES (for ...
1
vote
1answer
58 views

How to confirm delivery of Amazon-SNS Message to SQS Queue?

I'm publishing a message to SNS, and then delivering that message to an SQS queue. If I have the PublishResult from publishing the message (containing a MessageId), is there any way I can confirm ...
0
votes
1answer
66 views

I try to know whether my amazon SNS endpoint getting notification or not in PHP

Tried to get the amazon sns response on my http endpoint. Whenever i trigger ses send mail service to a non-existent email to get a bounce mail it should send the notification to the amazon SNS ...
1
vote
3answers
125 views

How should Amazon SQS be used? Import / Process Scenario

I want to co-ordinate telling Server B to start a process from Server A, and then when its complete, run an import script on Server A. I'm having a hard time working out how I should be using SQS ...
1
vote
0answers
117 views

PHP JSON decode Amazon SNS

I'm having issues decoding certain Amazon SNS notifications using PHP's json_decode (5.3.10-1ubuntu3.5) and have not yet been able to figure out why despite the json being marked as valid using ...
0
votes
1answer
54 views

Amazon Glacier: How to Associate an Archive-Retrieval SNS Response With It's Job ID?

I have a service that archives zip files to Glacier. I have a Simple Notification Service set up to let me know when an unarchive job is finished ("Archive-Retrieval" request). From everything I can ...
1
vote
2answers
182 views

Example SNS subscription confirmation using AWS .NET SDK

I am trying to figure out how to use the AWS .NET SDK to confirm a subscription to a SNS Topic. The subscription is via HTTP The endpoint will be in a .net mvc website. I can't find any .net ...
0
votes
1answer
112 views

SNS publishing to multiple EC2 instances

when I try to subscribe an http endpoint from an EC2 instance to an SNS topic, I get the following message: "Not authorized to subscribe internal endpoints" Is there any workaround for this? What is ...
0
votes
1answer
64 views

How do you mass add an existing SMS list to Amazon SNS?

We have been using the email => SMS gateway for our SMS messages in the past. We are now looking for a better way of doing this. In looking at AWS SNS, we can send SMS messages, but the customer has ...
0
votes
1answer
214 views

Amazon SNS Python Boto - How to create a message to be sent

I am getting my head around using SNS to send a message from one server to another. I want to create a message to send to the other server using Python and Boto so I was wondering if someone could ...
3
votes
1answer
201 views

Is the fanout pattern using AWS SNS ans SQS reliable?

AWS blog says that it supports the fanout messaging pattern. To do that, I subscribe SQS queues to a SNS topic. Now my question is, is the publishing of message to SQS by SNS reliable? As in, is it ...
1
vote
1answer
596 views

What is the difference between Amazon SNS and Amazon SQS?

I don't understand when I would use SNS and when SQS, and why is it always coupled together?
1
vote
1answer
757 views

Confirm SNS subscription on HTTP

I created an Amazon SNS Topic and added 2 subscriptions. My email id which works fine after confirmation. HTTP URL of an amazon ec2 instance. The problem now is I cannot understand how to confirm ...
3
votes
1answer
1k views

Push notifications on Android: Google GCM vs. Amazon SNS?

My Android app needs simple push notifications to be informed about the appearance of new data on a server. Android provides Google Cloud Messaging (GCM) which would seem to fit. However, devices ...
0
votes
2answers
131 views

Java Base64 Encode with Amazon Services

I am using exact code from here: http://docs.amazonwebservices.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/AuthJavaSampleHMACSignature.html to generate a signature for my application. ...
1
vote
0answers
75 views

JSP POST Script to recieve AWS SNS confirmation message?

I am implementing AWS SNS functionality. The endpoint that I have defined is a URL(jsp) of a web page with HTTP Protocol I want to write a POST script which would receive the message from AWS SNS and ...
1
vote
1answer
253 views

How do I create an Alarm to detect DynamoDb limits have reached a certain percent and then increase it

I'm writing a web application that has steadily increasing traffic through the day. I'd like to create an Alarm that can detect if my read / write limits have reached a certain percentage (like 80%), ...
0
votes
2answers
897 views

Working with Amazon SQS & SNS in Java

For the first time I have come across Amazon SQS and Amazon SNS. I will be working with these at my work place in Java. I have a few questions about these, I don't have that much of Java ...
1
vote
1answer
244 views

How to get token in HTTP from Amazon SNS subscription?

How do I confirm the subscription of Amazon SNS via http? I'm currently using Rails for my application and would like to get notifications of my email bounces. So, I tried looking through Amazon ...
0
votes
0answers
244 views

boto.sns BotoServerError when publishing a notification

I am using Python 2.7 and boto library for Amazon SNS. I am trying to send a notification when I get an exception with detail of the exception. In some cases exception string contains strings like ...
13
votes
2answers
2k views

How do push notifications work?

I'm trying to implement push notifications on my PHP-based website. The goal is to make something similiar to what Stackoverflow and other sites have which notify a user in real-time when they get ...
10
votes
1answer
1k views

Push notifications in PHP using Amazon SNS/SQS?

On my site I'd like to do push notifications of comments like Stackoverflow does. Amazon SNS/SQS seems to provide a framework to do this but I'm having difficulty finding any code/explanation on the ...
0
votes
0answers
206 views

Message Queue with AWS

Im writing an app using the AWS framework. It would be the perfect framework if the SQS had FIFO access! I am using SNS to publish messages to queues, and the order of the messages is important. ...
2
votes
1answer
350 views

Amazon SNS -> SQS message body

I'm sending a message from an SNS topic to an SQS. When I'm checking the body of the SQS message on my client, the whole of the message metadata is being sent in the SQS body. I.E. if I'm sending a ...
0
votes
2answers
118 views

Can I block on a Google AppEngine Pull Task Queue until a Task is available?

Can I block on a Google AppEngine Pull Task Queue until a Task is available? Or, do I need to poll an empty queue until a task is available?
3
votes
1answer
547 views

Does Amazon SNS use GET or POST to an http subscription?

I could not find anything documentation regarding method or format of message.
2
votes
2answers
1k views

Amazon SNS to push topic using PHP

I'm trying to understand amazon php sdk for AWS but I really can't use it. I find some basic classes to create, display and push topic but I doesn't work either. I just want to find a way (the ...
3
votes
1answer
452 views

Is it possible to receive an Amazon SNS message on a JS script?

I know some options using ruby on rails and/or node.js and PubNuB, a service that has many APIs so you can send/receive notifications between (almost) any platform. I now how to send messages from ...
2
votes
2answers
431 views

AWS SNS webservice subscription - express issue, sinatra example

I'm simply trying to build an auto-subscription API which POSTs back the token. I can do this very easily in Sinatra (render the POSTed JSON from AWS) -- seem to be having a hard time in Express; I'm ...
3
votes
1answer
655 views

Can Amazon Simple Notification Service “push” notifications to a desktop client?

Can Amazon Simple Notification Service "push" notifications to a desktop client? It this possible as a true push without polling?
2
votes
3answers
204 views

What is Amazon SNS? Strange usage in my account activities

What is it for? I didn't activate this services in my account. I only use EC2, S3 and SES. But when I lookup my account activities, there are ~200 request made for SNS, which I know I didn't use. Is ...
2
votes
1answer
469 views

Design a push queue using Amazon SQS and SNS, how to?

Right now: App #1 insert messages to SQS A .Net worker role polls the queue and if message found sent it to App #2 to process, wait for App #2 to finish and re-start polling the queue App #2 process ...
3
votes
3answers
429 views

Is there an open-source equivalent to Amazon SNS?

Does anyone know of an open-source equivalent to Amazon SNS? Maybe something that supports a similar pub-sub interface but that can be run on a closed or private network.
3
votes
1answer
2k views

Amazon Simple Notification Service (SNS) for push notifications on iOS?

Amazon Web Services have an SDK for iOS which supports the Amazon Simple Notification Service (SNS). Does this mean it would be possible to use SNS to send push notifications to a running iOS app? So ...
4
votes
2answers
343 views

Amazon SNS (Simple Notification Service) Perl libraries

I wanted to start using the Amazon Simple Notification Service, but I have not found any Perl libraries that I can use to access the service. I would rather not create my own library, I wanted to see ...
0
votes
1answer
289 views

Amazon sqs vs custom implementation

We need to sync data between different web servers. The idea is very basic: when one entity is created on one server, it should be sent to all the other servers. What's the right way to do it? We are ...
0
votes
1answer
432 views

Is Amazon SNS ideal for Comet solution?

Is Amazon SNS an ideal solution for a notification system like Facebook's web page notifications when a web application is written in PHP? By ideal I mean performance and scalability in terms of ...
5
votes
1answer
1k views

what would be the possible approach to go : SQS or SNS?

I am going to make the rails application which integrates the Amazon's cloud services. I have explore amazon's SNS service which gives the facility of public subscription which i don't want to ...
1
vote
1answer
749 views

SNS topic not publishing to SQS

I am trying to prototype a distributed application using SNS and SQS.I have this topic: arn:aws:sns:us-east-1:574008783416:us-east-1-live-auction and this queue: ...
0
votes
3answers
2k views

Can Amazon SNS push notifications directly to mobile devices?

The tutorial for Windows Phone 7 push notifications says that to implement Push Notifications, you need to call Microsoft Push Notification service which manages the sending of the notification to WP7 ...
0
votes
3answers
2k views

Send over 1000 emails per day via gmail, amazon sns, or own smtp

I'm trying to code a mail sender service. Previously I built a simple desktop application which uses my shared hosting mail server to send html mails. But now it's not enough and I plan switching to ...
1
vote
2answers
535 views

Sinatra AWS SNS Endpoint - Help needed

Hiya, Due to the undocumented nature of the Amazon SNS endpoints and how they interact with the user, I am struggling to code an endpoint in Sinatra for my application. I have some code written in PHP ...
1
vote
1answer
365 views

Error when adding permissions to an Amazon SNS topic when using the .NET libraries

When attempting to add permissions to an Amazon SNS topic using the AWS SDK for .NET/1.1.0.1 using code similar to the following: AddPermissionRequest request = new AddPermissionRequest() ...

1 2