Yves Glodt
2009-07-07 13:28:11 UTC
Hi,
I have a simple jsp-page whose only purpose is to jsp:forward to my
main controller-servlet, here it is:
<%@ page session="true" %>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<jsp:forward page="/FormProcessor">
<jsp:param name="o" value="action1" />
</jsp:forward>
The problem I have is that the request comes as POST to the servlet,
but without the "o"-parameter.
The o-param instead comes as query-string o=action1
Note that the post-request comes from an external URL.
Does jsp:foward not preserve the original request? I would like to keep all POST
Best regards,
Yves
I have a simple jsp-page whose only purpose is to jsp:forward to my
main controller-servlet, here it is:
<%@ page session="true" %>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<jsp:forward page="/FormProcessor">
<jsp:param name="o" value="action1" />
</jsp:forward>
The problem I have is that the request comes as POST to the servlet,
but without the "o"-parameter.
The o-param instead comes as query-string o=action1
Note that the post-request comes from an external URL.
Does jsp:foward not preserve the original request? I would like to keep all POST
Best regards,
Yves