I want to make a web service that is highly reliable to a third-party web service. The high reliability here means any single request from the third-party web service will be successfully processed by my web service. The third-party service doesn't have a retry mechanism on a failed request nor can it change its request format (a http POST with fields and values in the body).
I am not considering a fail-over solution such as multiple nodes behind a load balancer meets the requirements because one node may fail and load balancer may still route a request to it before its removed from the pool.
I am considering using something like Amazon SQS that receives the request from third-party request and passes it onto my web service because SQS has a retry mechanism. However, the difficulties here is SQS seems requires the content to be filled in the "Message" parameter and this cannot be achieved by the third party service.
Could there be a solution?