All Packages Class Hierarchy This Package Previous Next Index
java.lang.Object | +----javax.servlet.GenericServlet | +----javax.servlet.http.HttpServlet | +----org.apache.jserv.JServSSI
JServSSI
provides support for the invocation of servlets
from within HTML documents.
JServSSI
supports server side includes servlets with the
<servlet> </servlet> style tag. To activate JServSSI
, HTML documents that contain <servlet> tags must have
their file names end with the .jhtml
extension.
Example of a serlvet invocation by the
...
( some HTML code)
...
<SERVLET NAME="servlet test" CODE="Myservlet.class">
<PARAM NAME="Parameter_1" VALUE="1">
<PARAM NAME="Parameter_2" VALUE="some other value">
</SERVLET>
...
( some more HTML code)
...
originalParameters
servletAttributes
JServSSI()
doGet(HttpServletRequest, HttpServletResponse)
doPost(HttpServletRequest, HttpServletResponse)
servletAttributes
protected Hashtable servletAttributes
originalParameters
protected Hashtable originalParameters
JServSSI
public JServSSI()
doPost
public void doPost(HttpServletRequest req,
HttpServletResponse res)
doGet
public void doGet(HttpServletRequest req,
HttpServletResponse res)
All Packages Class Hierarchy This Package Previous Next Index