Image processing system.
User uploads a photo to the S3. Image processing application takes the photo from S3 and starts processing on it and returns an output.
Process: Webserver is sending SQS message with info of image to the queue, and the Image processing Server gets the SQS message and starts processing over this image. As soon as the image processing is finished it uploads the image back to S3 and returns the SQS message back to queue. Image Processing engine is on the EC2 server.
Here is the question: How can the webserver get the return SQS message from queue which was sent from Image processing server?