I want to send request to servlet and read headers from response. So I try it using this:
URL url = new URL(contextPath + "file_operations");
HttpURLConnection conn = null;
try {
conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setDoInput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("charset", "utf-8");
conn.setUseCaches(false);
conn.setConnectTimeout(1000 * 5);
conn.connect();
conn.getHeaderField("MyHeader")
.....
But received headers are always null
. Servlet works fine (i tried work with servlet using standalone HTTP client)
Make sure you are getting the successful response before you try to fetch the headers. This is how you can check for your response:
Also make sure the Servlet response is not a redirect response, if redirected all the session information, including headers will be lost.
Before the connect (right after setRquestPropert, setDoOutput a.s.o):
Before disconnect (after reading response a.s.o):