I writing a JSP program that needs to react on an existing program. It gets several variables that the JSP program needs to process and generate a response.
The existing program has his custom headers like:
Content-Type: application/x-server-response
But the JSP program returns its content with the wrong headers. Like this:
Content-Type: application/x-server-response;charset=UTF-8
The part thats killing the existing program is the charset. The program requires to get the repsonse with no charset set at all.
I've search the internet for this question and find more people with the same problem but the given results doesn't resolve the problem.
Is it possible to let the JSP program return its content with no charset at all?