I run ElasticMQ locally to emulate Amazon SQS, and I want to send a JSON file as a MessageBody. Here's an example request that works:
If I want to send a large JSON file, it would make more sense to to that as a POST, something like this:
# Doesn't work:
-H "Content-Type: application/json" --data @./bigdata.json
Is there a way to make this work?