Reputation: 790
I am submitting a multi part REST API request to a Tomcat server running on a container in AWS. The request has only one part in it, which is an unencrypted excel file. I am having a servlet Filter implemented in the backend. In the filter, I am having the code
Collection<Part> parts = request.getParts();
if(parts.size()==0)
System.out.println("No parts in request");
else
System.out.println("Parts detected in request");
I am observing the following behavior only when connection is from a public network.
I have checked with the Network team and there is no firewall restrictions which could cause this behavior.
What can cause this kind of a behaviour? Could there be any setting in AWS alb, which can silently restrict the maximum time a request can upload a file?
Upvotes: 0
Views: 17