Apache is incorrectly converting jsp pages to "text/plain" - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:32:10Z http://stackoverflow.com/feeds/question/933959 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain 1 Apache is incorrectly converting jsp pages to "text/plain" AndrewR 2009-06-01T08:20:53Z 2009-08-26T19:29:55Z <p>I've got a fairly normal setup in which Apache proxies requests to a servlet running inside Tomcat over the AJP protocol. </p> <p>We've run this setup on Apache 2.0.46/Tomcat 5.0.28 for ages without problems but have recently updated to Apache 2.2.3/Tomcat 5.5.</p> <p>The problem is that we've noticed that intermittently (maybe one time in 3) Apache will somehow convert the "Content-Type" HTTP header of a page served by the servlet from "text/html" to "text/plain", which results in the browser displaying the HTML source instead of rendering it.</p> <p>Has anyone seen this sort of behavior before and know what might be the cause? I suspect we're doing something bad in our servlet code that the old version of Tomcat/Apache was more forgiving of.</p> <p><strong>Update</strong>: I have confirmed that it's Apache changing the headers. If I browse directly to Tomcat the problem doesn't occur.</p> http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain/935734#935734 0 Answer by gareth_bowles for Apache is incorrectly converting jsp pages to "text/plain" gareth_bowles 2009-06-01T17:01:44Z 2009-06-01T17:01:44Z <p>If you're seeing this problem intermittently, it's almost certain to be something in the servlet code rather than a misconfiguration of Tomcat or httpd. Do you have logging that you can turn on to print the contents of the HTTP headers ?</p> <p>To isolate the problem a bit further, you could also try bypassing httpd and going direct to the Tomcat URLs for your pages.</p> <p>I haven't seen this particular behaviour before myself, so sorry I can't be more specific.</p> http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain/935746#935746 0 Answer by DDaviesBrackett for Apache is incorrectly converting jsp pages to "text/plain" DDaviesBrackett 2009-06-01T17:04:48Z 2009-06-01T17:04:48Z <p>By intermittent, do you mean that some pages exhibit this behaviour and others don't, or that there are pages that sometimes exhibit the behaviour and sometimes not?</p> <p>Can you attach any logging to the AJP layer to log HTTP headers at that level, so you can verify whether it's Apache or Tomcat adding the bogus header?</p> http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain/937311#937311 0 Answer by Swish for Apache is incorrectly converting jsp pages to "text/plain" Swish 2009-06-01T23:33:59Z 2009-06-01T23:33:59Z <p>Are you proxying back to a cluster? Maybe one of the servers is configured wrong.</p> http://stackoverflow.com/questions/933959/apache-is-incorrectly-converting-jsp-pages-to-text-plain/937708#937708 0 Answer by AndrewR for Apache is incorrectly converting jsp pages to "text/plain" AndrewR 2009-06-02T02:40:58Z 2009-06-02T02:40:58Z <p>Ok. I figured it out, it was a bug in the servlet code:</p> <p>We were doing something like this to write serialized Java objects as the result of HTTP requests:</p> <pre><code>DeflaterOutputStream dos = new DeflaterOutputStream(response.getOutputStream()); ObjectOutputStream oos = new ObjectOutputStream(dos); response.setContentType("application/x-java-serialized-object"); oos.writeObject(someObject); </code></pre> <p>What seemed to be happening was that the <code>DeflaterOutputStream</code> and <code>ObjectOutputStream</code> would get garbage-collected three or four requests later when they were still attached to the response object's output stream and this would cause something to happen on the stream that confused Apache and caused it to rewrite the headers.</p> <p>I replaced the above with:</p> <pre><code>ByteArrayOutputStream byteStream = new ByteArrayOutputStream(); DeflaterOutputStream dos = new DeflaterOutputStream(byteStream); oos = new ObjectOutputStream(dos); response.setContentType("application/x-java-serialized-object"); oos.writeObject(someObject); oos.flush(); dos.finish(); byteStream.writeTo(response.getOutputStream()); </code></pre> <p>and the problem has gone away.</p> <p>The following links seem to describe a similar problem:</p> <ul> <li><a href="http://markmail.org/message/btwcnbl2i7ftwj4n#query:apache%20ajp%20changes%20Content-Type%2Bpage:1%2Bmid:btwcnbl2i7ftwj4n%2Bstate:results" rel="nofollow">AJP Flush Packet causing text/plain</a></li> <li><a href="https://issues.apache.org/bugzilla/show%5Fbug.cgi?id=43478" rel="nofollow">ASF Bugzilla – Bug 43478</a></li> </ul>