i have observed this in wireshark packet captures that server sent FIN,ACK. The client sends post request at the same time. server is sending keep-alive to check if the client is alive or not. client also acknowledges and re transfer the failed packets. Server is not sending for any of retransmitted packet. at the end server is sending RST singnal. this is resulting in 503 error.
I need help to understand why would client send POST request even after server's FIN packet?
Let's if the connection is still alive at server side after FIN, why would it not respond to client's POST request?
Why server is sending Keep-Alive packet when client has already send POST request and waiting for server to respond?