Hi,
I've just encountered an odd bit and I thought I'd
check with the list before I bang my head for too long
against it.
I've got a form that submits some parameters to a JSP
page.
<form method="post" action="/path/mypage.jsp">
blah blah
</form>
The configuration used is Apache 1.3.17, mod_jk,
tomcat 3.2.1 on Win NT.
The request goes through one rewrite to get to the JSP
RewriteCond $0 !/myapp/.*
RewriteRule ^(/.*\.jsp.*)$ /myapp$0 [R]
(this is so that the .jsp path is in the correct
tomcat servlet context) resulting in
http://myserver.com/myapp/path/mypage.jsp
which is correctly passed over to tomcat and executed
by the correct jsp just fine.
The problem is this:
When I use a method="get" form, the above all works
perfectly. I can retrieve all the parameters set by
the form. However, when I use a method="post" form
the parameters of the request are not set.
I do not believe this is a problem with tomcat because
I can definitely do POST forms against tomcat acting
standalone. I believe I am missing some crucial,
perhaps simple and obvious step because I am using
Apache to be the front end of the server stack.
Any helps or nudges in the right direction are greatly
appreciated.
Thanks in advance.
mel
__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35
a year! http://personal.mail.yahoo.com/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]