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=43872>.
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=43872


[EMAIL PROTECTED] changed:

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




------- Additional Comments From [EMAIL PROTECTED]  2007-11-20 15:06 -------
(In reply to comment #1)
> The same behavous is with Tomcat 6.0.14
> I'm sure I miss something but I can't findout what.

Yes, you are missing something. You form's action points to "/lele", but this 
URL is a directory, so Tomcat issues a HTTP redirect to the correct directory 
path "/lele/".

Most browsers will follow a HTTP redirect with a GET request, even if the 
original form submission was POST.

To fix your example, just set your form action to "/lele/" or "/lele/
index.html" so your servlet gets accessed directly without any redirects, and 
you will see the doPost() method and the form parameters.


-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to