Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-17 Thread Rainer Jung
On 17.11.2009 02:33, ndunn1979 wrote: Rainer Jung-3 wrote: BTW: Do you use the tomcat native connector? If so, try whether the problem comes from tcnative. So, I tried increasing the log level on the Tomcat side, but it was a stab in the dark because I'm not very familiar with the

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-16 Thread ndunn1979
Rainer Jung-3 wrote: BTW: Do you use the tomcat native connector? If so, try whether the problem comes from tcnative. So, I tried increasing the log level on the Tomcat side, but it was a stab in the dark because I'm not very familiar with the default style of logging (I use log4j,

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-13 Thread Rainer Jung
On 13.11.2009 02:39, Christopher Schultz wrote: Rainer, On 11/12/2009 6:10 PM, Rainer Jung wrote: The 8184 refers to the AJP default max packet size of 8KB minus some protocol overhead. So if a bug response is send, you will see lots of thosse 8184, which are simply fully sized AJP packets.

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-13 Thread ndunn1979
Rainer Jung-3 wrote: As said: JkLogLevel trace will log the full packets. I reran it with trace log level and I can see the break now between the packets. One example that works (notice inde at the end of the first packet and x at the beginning of the next one: [Fri Nov 13

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-13 Thread Rainer Jung
On 13.11.2009 15:06, ndunn1979 wrote: Rainer Jung-3 wrote: As said: JkLogLevel trace will log the full packets. I reran it with trace log level and I can see the break now between the packets. Good. One example that works (notice inde at the end of the first packet and x at the

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-13 Thread ndunn1979
I left them off because they were the same. The only difference is they are a second apart. [Fri Nov 13 08:32:07.359 2009] [1916:2244] [debug] jk_ajp_common.c (1259): 03 1F F8 61 63 74 69 6F 6E 3D 31 26 6E 61 6D 65 - ...action=1name [Fri Nov 13 08:32:08.218 2009] [1916:2244] [debug]

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-13 Thread Rainer Jung
On 13.11.2009 21:41, ndunn1979 wrote: I left them off because they were the same. The only difference is they are a second apart. [Fri Nov 13 08:32:07.359 2009] [1916:2244] [debug] jk_ajp_common.c (1259): 03 1F F8 61 63 74 69 6F 6E 3D 31 26 6E 61 6D 65 - ...action=1name [Fri

Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread ndunn1979
I am experiencing an odd issue using AJP13 to connect Apache up to Tomcat. I've gotten it all setup and working for small pages, but I have a use case where Tomcat serves a very large page 300KB. In this particular case, the page does not load completely. Sections of the html are duplicated, and

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread ndunn1979
Another thought, the application works fine if I go to Tomcat directly via port 8080. -- View this message in context: http://old.nabble.com/Apache-Tomcat-Connector-%28AJP13%29-is-corrupting-html-content-tp26320290p26320720.html Sent from the Tomcat - User mailing list archive at Nabble.com.

RE: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread Caldarale, Charles R
From: ndunn1979 [mailto:ndunn...@earthlink.net] Subject: Apache Tomcat Connector (AJP13) is corrupting html content I'm using Apache 2.2 with Tomcat 5.5 on a Windows XP box. Exact httpd version? Exact Tomcat version? Exact mod_jk version? JRE version? - Chuck THIS COMMUNICATION MAY

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 To whom it may concern, On 11/12/2009 10:07 AM, ndunn1979 wrote: I am experiencing an odd issue using AJP13 to connect Apache up to Tomcat. Which version of mod_jk are you using? Where did you get your mod_jk binary? What JVM are you using? -

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread André Warnier
ndunn1979 wrote: I am experiencing an odd issue using AJP13 to connect Apache up to Tomcat. I've gotten it all setup and working for small pages, but I have a use case where Tomcat serves a very large page 300KB. ... Just so that you would not think that this is a common issue : I have a

RE: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread ndunn1979
Apache HTTP Server/2.2.14 mod_jk/1.2.28 jdk 1.6.0_07-b06 Apache Tomcat/5.5.26 I got the binary for mod_jk from a mirror on the tomcat connectors download page. The exact filename was mirror/win32/jk-1.2.28/mod_jk-1.2.28-httpd-2.2.3.so -- View this message in context:

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread Rainer Jung
On 12.11.2009 16:07, ndunn1979 wrote: I am experiencing an odd issue using AJP13 to connect Apache up to Tomcat. I've gotten it all setup and working for small pages, but I have a use case where Tomcat serves a very large page 300KB. In this particular case, the page does not load

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread ndunn1979
Rainer Jung-3 wrote: Does it happen every time for that page? Or is it at least easily reproducible for you? Does the load not completely always stop at the same position? If yes, which byte offset? Thos questions help us decide, how easily we will be able to attack the prpblem. The

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread Rainer Jung
On 12.11.2009 23:35, ndunn1979 wrote: Rainer Jung-3 wrote: Does it happen every time for that page? Or is it at least easily reproducible for you? Does the load not completely always stop at the same position? If yes, which byte offset? Thos questions help us decide, how easily we will

Re: Apache Tomcat Connector (AJP13) is corrupting html content

2009-11-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Rainer, On 11/12/2009 6:10 PM, Rainer Jung wrote: The 8184 refers to the AJP default max packet size of 8KB minus some protocol overhead. So if a bug response is send, you will see lots of thosse 8184, which are simply fully sized AJP packets.