org.deegree_impl.enterprise
Class WMSServlet
java.lang.Object
HttpServlet
org.deegree_impl.enterprise.AbstractOGCServlet
org.deegree_impl.enterprise.WMSServlet
- public class WMSServlet
- extends AbstractOGCServlet
/**
Serves as an OCC-compliant HTTP-frontend to the WMS.
- Since:
- 1.0
- Version:
- $Revision: 1.55 $, 1.0. $Revision: 1.55 $, $Date: 2004/04/13 11:37:43 $
- Author:
- Andreas Poth, Markus Schneider, last edited by: $Author: poth $
- See Also:
- Serialized Form
Method Summary |
void |
doGet(HttpServletRequest req,
HttpServletResponse resp)
Called by the server (via the service method) to allow a servlet to
handle a GET request. |
void |
doPost(HttpServletRequest req,
HttpServletResponse resp)
|
void |
init(ServletConfig servletConfig)
Called by the servlet container to indicate that the servlet is being
placed into service. |
protected void |
initService()
Called when reinitialization of the service is necessary, e.g.
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
wmsCapabilities
protected WMSCapabilities wmsCapabilities
servicePool
protected WMServicePool servicePool
initException
private java.lang.Exception initException
WMSServlet
public WMSServlet()
doGet
public void doGet(HttpServletRequest req,
HttpServletResponse resp)
- Called by the server (via the service method) to allow a servlet to
handle a GET request.
- Parameters:
req
- an HttpServletRequest object that contains the request the
client has made to the servletresp
- an HttpServletResponse object that contains the response
the servlet sends to the client
doPost
public void doPost(HttpServletRequest req,
HttpServletResponse resp)
- Parameters:
req
- resp
-
init
public void init(ServletConfig servletConfig)
throws ServletException
- Called by the servlet container to indicate that the servlet is being
placed into service.
- Overrides:
init
in class AbstractOGCServlet
- Parameters:
servletConfig
- servlet capabilities
- Throws:
ServletException
- exception if something occurred that interferes
with the servlet's normal operation
initService
protected void initService()
- Called when reinitialization of the service is necessary, e.g.
the capabilities file has been altered.
- Specified by:
initService
in class AbstractOGCServlet