Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DSAPI problem 1

Status
Not open for further replies.

manu0

Programmer
Apr 28, 2001
54

hi

I'm using DSAPI tomcat_redirector.dll to forward http requests to Tomcat (running as a servlet container) to handle servlet and jsp files.

When one jsp contains parameters (<input> fields) and a POST method is used within a <FORM> tag to validate the form, the destination servlet or jsp cannot retrieve those parameters... (value=null), but GET methods and parameters like &quot;<a href=test2.jsp?param=ok>&quot; work fine.

What can I do ?

I'm running Domino 5.0.10 and Tomcat 4.0 with protocol ajp13
(in the workers file).
manu0
 
you have to use type=&quot;post&quot; to send the posted information. This one bit my in the behind too....you can still use method=&quot;post&quot; but you don't need to.

<form type=&quot;post&quot; name=&quot;formname&quot; action=&quot;yourservlet&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top