Hi,
I was just wondering if it was normal for getContentType to return Null inside the doFilter method:
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
_contentType = servletRequest.getContentType(); // Keeps returning null
...
I am guessing that by the time the HTML arrives to the doFilter method it arrives as text data that has lost the type information which was supplied by the JSP?
Is anyone able to confirm this?
Thanks