Code Monkey home page Code Monkey logo

Comments (4)

osmanghoni1 avatar osmanghoni1 commented on May 19, 2024 1

Hi, I believe I am having similar issues as @mikejr83

$sqsClient = new SqsClient(['debug' => true, 'endpoint' => 'http://localhost:9324','region' => 'eu-central-1', 'version' => '2012-11-05']);

$message = [ 'QueueUrl' => 'http://localhost:9324/queue/service-queue', 'MessageBody' => 'Some message', 'MessageGroupId' => 'GROUP' ];

$sqsClient->sendMessage($message);

I am also adding message attributes here but committed in example above

I have tried with the default queue as well, my code works with a queue on aws, using the credentials file

Debug output from the client
sqs-debug.txt

Any help would be appreciated

from alpine-sqs.

WesleyBuck avatar WesleyBuck commented on May 19, 2024

Hi, @mikejr83 @osmanghoni1 found a work around for the .net AWS SDK dependency injection not working with a local docker instance:
#if DEBUG // Connect to local sqs instance, leveraging using for disposal and proper managment of the entity. using IAmazonSQS lsqs = new AmazonSQSClient(new AmazonSQSConfig { ServiceURL = "http://localhost:9324", }); sqs = lsqs; #endif

from alpine-sqs.

WASDi avatar WASDi commented on May 19, 2024

As I have no credentials at all yet, I was able to send a message using the Java SDK like this:

AmazonSQS sqs = AmazonSQSClientBuilder.standard()
        .withEndpointConfiguration(new AwsClientBuilder.EndpointConfiguration("http://localhost:9324", null))
        .withCredentials(new AWSStaticCredentialsProvider(new AnonymousAWSCredentials()))
        .build();

sqs.sendMessage("http://localhost:9324/queue/default", "Hello World");

from alpine-sqs.

WesleyBuck avatar WesleyBuck commented on May 19, 2024

@WASDi I actually recommend using ElasticMQ. It does not have the same long polling issues as Alpine SQS and it still allows you to use AWS SDK to connect to it.

from alpine-sqs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.