Package mondrian.web.servlet
Class MdxQueryServlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- mondrian.web.servlet.MdxQueryServlet
-
- All Implemented Interfaces:
Serializable
,Servlet
,ServletConfig
public class MdxQueryServlet extends HttpServlet
MdxQueryServlet
is a servlet which receives MDX queries, executes them, and formats the results in an HTML table.- Since:
- 13 February, 2002
- Author:
- Sean McCullough
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MdxQueryServlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
destroy()
Destroys the servlet.protected void
doGet(HttpServletRequest request, HttpServletResponse response)
Handles the HTTPGET
method.protected void
doPost(HttpServletRequest request, HttpServletResponse response)
Handles the HTTPPOST
method.String
getServletInfo()
Returns a short description of the servlet.void
init(ServletConfig config)
Initializes the servlet.protected void
processRequest(HttpServletRequest request, HttpServletResponse response)
Processes requests for both HTTPGET
andPOST
methods.-
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
-
Methods inherited from class javax.servlet.GenericServlet
getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletName, init, log, log
-
-
-
-
Method Detail
-
init
public void init(ServletConfig config) throws ServletException
Initializes the servlet.- Specified by:
init
in interfaceServlet
- Overrides:
init
in classGenericServlet
- Throws:
ServletException
-
destroy
public void destroy()
Destroys the servlet.- Specified by:
destroy
in interfaceServlet
- Overrides:
destroy
in classGenericServlet
-
processRequest
protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Processes requests for both HTTPGET
andPOST
methods.- Parameters:
request
- servlet requestresponse
- servlet response- Throws:
ServletException
IOException
-
doGet
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Handles the HTTPGET
method.- Overrides:
doGet
in classHttpServlet
- Parameters:
request
- servlet requestresponse
- servlet response- Throws:
ServletException
IOException
-
doPost
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Handles the HTTPPOST
method.- Overrides:
doPost
in classHttpServlet
- Parameters:
request
- servlet requestresponse
- servlet response- Throws:
ServletException
IOException
-
getServletInfo
public String getServletInfo()
Returns a short description of the servlet.- Specified by:
getServletInfo
in interfaceServlet
- Overrides:
getServletInfo
in classGenericServlet
-
-