Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS SNS not sending Subscription Confirmation

I have setup AWS SNS setup with a topic say 'A'. I'm doing a subscribe to this SNS topic using Http (tried both manually using AWS console online and using Java Code). All I get is 'pending confirmation' in both cases. However SNS does not send the initial 'SubscriptionConfirmation' to the provided Url.

Note that my endpoint is ready to receive http POST notification. When I manually do a POST from my side I see my servlet processing those Json I send. For some reason I receive nothing from AWS SNS.

Note that my http end point that I used for subscribe is public facing so SNS should have no issue reaching it.

Any inputs is appreciated.

Here is my subscribe function.

public String subscribe(String arn,String url) {

    if(arn == null || arn.isEmpty())
        arn = topicArn;
    SubscribeRequest subRequest = new SubscribeRequest(arn,"http",url);
    SubscribeResult  result = snsClient.subscribe(subRequest);
    //get request id for SubscribeRequest from SNS metadata
    if(result != null){
        LOGGER.info("SubscribeResult - " + result.toString());
    }
    LOGGER.info("SubscribeRequest - " + snsClient.getCachedResponseMetadata(subRequest));
    return result.toString();
}
like image 382
user1588766 Avatar asked Feb 25 '16 14:02

user1588766


People also ask

How do I confirm my SNS subscription to SQS?

To confirm the subscription, you can use the Amazon SQS console or the ReceiveMessage action. Before you subscribe an endpoint to the topic, make sure that the queue can receive messages from the topic by setting the sqs:SendMessage permission for the queue.

What is SNS confirmation?

Usually, this means creating and deploying a web application (for example, a Java servlet if your endpoint host is running Linux with Apache and Tomcat) that processes the HTTP requests from Amazon SNS. When you subscribe an HTTP endpoint, Amazon SNS sends it a subscription confirmation request.

How do I get SNS notifications?

To set up an SNS topic Subscribe your email address to the topic using the subscribe command. If the subscription request succeeds, you receive a confirmation email message. From your email application, open the message from AWS Notifications and confirm your subscription.

Can SNS send SES notifications?

Amazon SES can notify you of your bounces, complaints, and deliveries through Amazon Simple Notification Service (Amazon SNS) . You can configure notifications in the Amazon SES console, or by using the Amazon SES API.


1 Answers

You are always going to get "pending confirmation" as the response for the subscriptionArn. The confirmation process is asynchronously as a separate process. To make this even more confusing if you call to get a list of current subscriptions they will show an slightly different subscriptionArn of "PendingConfirmation" so you can not even match it later.

As far as being able to connect, I would try hitting an end point outside of AWS first. By default most AWS elements are very locked down and can not even connect to each other, so there is likely a security setting somewhere that needs to be changed to let SNS connect to your EC2. Which would be why you can connect to the EC2 outside of AWS, but your SNS service can not.

Also check to make sure the SNS and EC2 you are using are in the same region. It is a common cause of connection issues.

If you are using a host name to connect I would try using the direct IP to see if it gets through.

like image 54
BrianC Avatar answered Oct 10 '22 19:10

BrianC