You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2007/03/26 21:33:49 UTC

DO NOT REPLY [Bug 41949] New: - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949

           Summary: mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not
                    complete
           Product: Tomcat 4
           Version: 4.1.31
          Platform: PC
        OS/Version: FreeBSD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Connector:JK/AJP
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: glenn@apache.org


FreeBSD 6.0-RELEASE-p4
apache-2.0.59
mod_jk 1.2.21
Tomcat 4.1.30

When apache is configured with an output filter to post process HTML generated
by a JSP page for SSI and the generated html has an SSI include virtual of
another JSP page and the original request was a POST mod_jk will hang while
sending the POST headers during the sub request.

To reproduce add the following to the VirtualHost section to enable post
processing of HTML generated from a JSP page for SSI:

<LocationMatch ".*\.(do|jsp)$">
Options Includes
AddOutputFilterByType INCLUDES text/html
</LocationMatch>

Create a simple test.html page which does a POST:

<p>
mod_jk JSP Post Test
</p>
<form method="post" action="/test/test1.jsp">
<input type="submit" name="test">
</form>

Create a test1.jsp page as follows:

<%@ page session="false" %>

<p>This is test1.jsp</p>

<!--#include virtual="/test/test2.jsp" -->



Finally here is the test2.jsp page:

<%@ page session="false" %>
<p>
This is test2.jsp
</p>

All of the above works fine if test.html uses a GET but mod_jk hangs
if test.html uses a POST. This problem doesn't exist in mod_jk 1.2.19.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949


mturk@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |ASSIGNED




------- Additional Comments From mturk@apache.org  2007-03-27 12:59 -------
It breaks on Tomcat 4.1.30 on my side as well.
However 5.5.x works as expected, so I suppose we have some
protocol error in mod_jk.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949


mturk@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |WONTFIX




------- Additional Comments From mturk@apache.org  2007-03-27 23:19 -------
Hi,

This is a Tomcat 4.1.30 (and 4.1.31) bug
Mod_jk fix is here:
http://issues.apache.org/bugzilla/show_bug.cgi?id=41610
and the commit is here:
http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/apache-2.0/mod_jk.c?r1=502560&r2=507923&diff_format=h

So mod_jk send Content-Length twice, once if present and other with
Content-Length: 0. Since it was the later one that counted we always had
Content-Length: 0.

I have tested with 4.1.34 and it works like expected, so if you wish browse
for the fix on Java side.

If you need further discussion, address this @dev.


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949





------- Additional Comments From glenn@apache.org  2007-03-27 08:46 -------
Created an attachment (id=19817)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=19817&action=view)
mod_jk debug output

Debug output from mod_jk exhibiting this bug. Not that mod_jk hangs,
the last line in the debug output is where it hangs. I have sanitized
the debug output to obfuscate hostnames and IP addresses.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949





------- Additional Comments From mturk@apache.org  2007-03-27 10:12 -------
Well, you should then know as well that the pure fact that you said
'it doesn't work' doesn't qualify as a legitimate bug.

I tried, and it works (Apache 2.0.59, Tomcat 5.5.20),
so you can turn on JkLogLevel to debug, hit the page and send the log
file. Without that it might be Tomcat 4.1, Apache, what ever...

I won't mark again this as 'WORKFORSOME', but if you don't provide
a log files, how can anyone detect the problem?

Regards.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949





------- Additional Comments From glenn@apache.org  2007-03-27 11:16 -------
The mod_jk log debug output was attached to this bug earlier today,
see comment #3 for this bug report. Here is a link to the debug output:

See http://issues.apache.org/bugzilla/attachment.cgi?id=19817

The first thing I listed in my initial bug report was the software versions
being used. I will repost:

FreeBSD 6.0-RELEASE-p4
apache-2.0.59
mod_jk 1.2.21
Tomcat 4.1.30


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949





------- Additional Comments From glenn@apache.org  2007-03-27 12:04 -------
Created an attachment (id=19819)
 --> (http://issues.apache.org/bugzilla/attachment.cgi?id=19819&action=view)
Test WAR file for JSP POST SSI bug

Here is a simple war file which can be used to exhibit the bug.
This assumes the context is named "test".

One more note, in my config the webapp context is aliased into apache
so apache can server static files, i.e. the test.shtml page. Only the
JSP pages are forwarded to tomcat using mod_jk.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949





------- Additional Comments From mturk@apache.org  2007-03-27 11:32 -------
What is the
/test/dhetest.jsp

You explained that it's needed
test.html
test1.jsp
test2.jsp

Can you attach all the test files for ROOT context?


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949





------- Additional Comments From glenn@apache.org  2007-03-27 14:13 -------
Thanks for testing with 4.1.30 and verifying the bug.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949


rainer.jung@kippdata.de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED




-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949


glenn@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|WORKSFORME                  |




------- Additional Comments From glenn@apache.org  2007-03-27 07:42 -------
I checked out mod_jk HEAD from svn, built, installed and tested this bug.

I can reproduce this bug using mod_jk HEAD from svn.

For me this is a big issue. We had to downgrade production servers
back to version 1.2.19 which still contains the recent security
vulnerability.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949





------- Additional Comments From glenn@apache.org  2007-04-13 09:23 -------
Adding one more comment to bring this bug report to closure.

The mod_jk patch listed previously fixed another mod_jk bug but introduced this
bug in the Ajp13Connector.

By reconfiguring your tomcat server.xml to use the CoyoteConnector with the
JkCoyoteHandler instead of the Ajp13Connector fixes this bug on the Tomcat side.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949


glenn@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|WORKSFORME                  |




------- Additional Comments From glenn@apache.org  2007-03-27 09:30 -------
Yes it works for you. But you do not even list what OS/apache/tomcat versions
you are using. Just because you have not been able to reproduce it yet does not
mean that there is not a bug with mod_jk on the OS/apache/Tomcat I am using.
Closing the bug as works for me seems a bit premature. You may recall that
I was the release manager for mod_jk several years ago. I wouldn't have posted
this bug report unless I was really seeing a bug.

The reason I posted it was so that those who have been working on mod_jk since
version 1.2.19 might consider what changes they made which would cause this
bug in 1.2.21.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949


mturk@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |WORKSFORME




------- Additional Comments From mturk@apache.org  2007-03-26 22:11 -------
Didn't check with 1.2.21, but it works with HEAD (mod_jk 1.2.22)

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


DO NOT REPLY [Bug 41949] - mod_jk 1.2.21 POST JSP Page SSI JSP sub request does not complete

Posted by bu...@apache.org.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=41949>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=41949


mturk@apache.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |WORKSFORME




------- Additional Comments From mturk@apache.org  2007-03-27 08:55 -------
It works for me. Please do not reopen the issue unless you give the
reproducale case. I used your files, and it simply works!

ApacheRoot/test/html:
<html>
<head>
<title>Test POST</title>
</head>    
<body>
<p>
mod_jk JSP Post Test
</p>
<form method="post" action="/test1.jsp">
<input type="submit" name="test">
</form>
</body>
</html>


/ROOT/test1.jsp:
<%@ page session="false" %>
<p>This is test1.jsp</p>
<!--#include virtual="/test2.jsp" -->

/ROOT/test2.jsp
<%@ page session="false" %>
<p>
This is test2.jsp
</p>


JkMount /*.jsp ajp13w


Mod_jk.log:

[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (868): Connected
socket 740 to (127.0.0.1:8009)
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): sending to
ajp13 pos=4 len=476 max=8192
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0000    12
34 01 D8 02 02 00 08 49 4E 43 4C 55 44 45 44  - .4......INCLUDED
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0010    00
00 0A 2F 74 65 73 74 32 2E 6A 73 70 00 00 09  - .../test2.jsp...
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0020    31
32 37 2E 30 2E 30 2E 31 00 FF FF 00 09 6C 6F  - 127.0.0.1.....lo
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0030    63
61 6C 68 6F 73 74 00 1F 90 00 00 0B A0 0B 00  - calhost.........
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0040    0E
6C 6F 63 61 6C 68 6F 73 74 3A 38 30 30 30 00  - .localhost:8000.
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0050    A0
0E 00 5A 4D 6F 7A 69 6C 6C 61 2F 35 2E 30 20  - ...ZMozilla/5.0.
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0060    28
57 69 6E 64 6F 77 73 3B 20 55 3B 20 57 69 6E  - (Windows;.U;.Win
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0070    64
6F 77 73 20 4E 54 20 35 2E 31 3B 20 65 6E 2D  - dows.NT.5.1;.en-
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0080    47
42 3B 20 72 76 3A 31 2E 38 2E 31 2E 33 29 20  - GB;.rv:1.8.1.3).
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0090    47
65 63 6B 6F 2F 32 30 30 37 30 33 30 39 20 46  - Gecko/20070309.F
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 00a0    69
72 65 66 6F 78 2F 32 2E 30 2E 30 2E 33 00 A0  - irefox/2.0.0.3..
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 00b0    01
00 63 74 65 78 74 2F 78 6D 6C 2C 61 70 70 6C  - ..ctext/xml,appl
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 00c0    69
63 61 74 69 6F 6E 2F 78 6D 6C 2C 61 70 70 6C  - ication/xml,appl
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 00d0    69
63 61 74 69 6F 6E 2F 78 68 74 6D 6C 2B 78 6D  - ication/xhtml+xm
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 00e0    6C
2C 74 65 78 74 2F 68 74 6D 6C 3B 71 3D 30 2E  - l,text/html;q=0.
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 00f0    39
2C 74 65 78 74 2F 70 6C 61 69 6E 3B 71 3D 30  - 9,text/plain;q=0
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0100    2E
38 2C 69 6D 61 67 65 2F 70 6E 67 2C 2A 2F 2A  - .8,image/png,*/*
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0110    3B
71 3D 30 2E 35 00 A0 04 00 0E 65 6E 2D 67 62  - ;q=0.5.....en-gb
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0120    2C
65 6E 3B 71 3D 30 2E 35 00 A0 03 00 0C 67 7A  - ,en;q=0.5.....gz
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0130    69
70 2C 64 65 66 6C 61 74 65 00 A0 02 00 1E 49  - ip,deflate.....I
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0140    53
4F 2D 38 38 35 39 2D 31 2C 75 74 66 2D 38 3B  - SO-8859-1,utf-8;
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0150    71
3D 30 2E 37 2C 2A 3B 71 3D 30 2E 37 00 00 0A  - q=0.7,*;q=0.7...
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0160    4B
65 65 70 2D 41 6C 69 76 65 00 00 03 33 30 30  - Keep-Alive...300
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0170    00
A0 06 00 0A 6B 65 65 70 2D 61 6C 69 76 65 00  - .....keep-alive.
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0180    A0
0D 00 1F 68 74 74 70 3A 2F 2F 6C 6F 63 61 6C  - ....http://local
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 0190    68
6F 73 74 3A 38 30 30 30 2F 74 65 73 74 2E 68  - host:8000/test.h
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 01a0    74
6D 6C 00 A0 07 00 21 61 70 70 6C 69 63 61 74  - tml....!applicat
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 01b0    69
6F 6E 2F 78 2D 77 77 77 2D 66 6F 72 6D 2D 75  - ion/x-www-form-u
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 01c0    72
6C 65 6E 63 6F 64 65 64 00 A0 08 00 02 31 37  - rlencoded.....17
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (914): 01d0    00
06 00 06 61 6A 70 31 33 77 00 FF 00 00 00 00  - ....ajp13w......
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1305): (ajp13w)
request body to send 0 - request body to resend 0
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): received
from ajp13 pos=0 len=78 max=8192
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): 0000   
04 00 C8 00 02 4F 4B 00 00 02 00 0C 43 6F 6E 74  - .....OK.....Cont
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): 0010   
65 6E 74 2D 54 79 70 65 00 00 1C 74 65 78 74 2F  - ent-Type...text/
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): 0020   
68 74 6D 6C 3B 63 68 61 72 73 65 74 3D 49 53 4F  - html;charset=ISO
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): 0030   
2D 38 38 35 39 2D 31 00 00 0E 43 6F 6E 74 65 6E  - -8859-1...Conten
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): 0040   
74 2D 4C 65 6E 67 74 68 00 00 02 33 32 00 00 00  - t-Length...32...
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (620): status = 200
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (627): Number of
headers is = 2
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (683): Header[0]
[Content-Type] = [text/html;charset=ISO-8859-1]
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (683): Header[1]
[Content-Length] = [32]
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): received
from ajp13 pos=0 len=36 max=8192
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): 0000   
03 00 20 0D 0A 3C 70 3E 0D 0A 54 68 69 73 20 69  - .....<p>..This.i
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): 0010   
73 20 74 65 73 74 32 2E 6A 73 70 0D 0A 3C 2F 70  - s.test2.jsp..</p
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): 0020   
3E 0D 0A 00 00 00 00 00 00 00 00 00 00 00 00 00  - >...............
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] mod_jk.c (452): written 32 out of 32
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): received
from ajp13 pos=0 len=2 max=8192
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1061): 0000   
05 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00  - ................
[Tue Mar 27 07:10:13 2007] [2404:3512] [debug] jk_ajp_common.c (1524): AJP13
protocol: Reuse is OK


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org