Class ProxyServlet

java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
com.netscape.cms.servlet.base.ProxyServlet
All Implemented Interfaces:
Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

public class ProxyServlet extends javax.servlet.http.HttpServlet
This is a servlet that proxies request to another servlet. SERVLET REDIRECTION Specify the URL of a servlet to forward the request to destServlet: /ee/ca/newservlet PARAMETER MAPPING In the servlet configuration (as an init-param in web.xml) you can optionally specify a value for the parameter 'parameterMap' which contains a list of HTTP parameters which should be translated to new names. parameterMap: Optionally, names can be set to static values: parameterMap: Examples: Consider the following HTTP input parameters: vehicle:car make:ford model:explorer The following config strings will have this effect: parameterMap: output: vehicle:car manufactuer:ford model:expedition suv:true
Version:
$Revision$, $Date$
See Also: