org.apache.qpid.management.servlet
Class WSDMAdapter

java.lang.Object
  extended by javax.servlet.GenericServlet
      extended by javax.servlet.http.HttpServlet
          extended by org.apache.qpid.management.servlet.WSDMAdapter
All Implemented Interfaces:
Serializable, Servlet, ServletConfig

public class WSDMAdapter
extends HttpServlet

QMan Adapter facade. This is the main requestor entry point of the WS-DM connector / adapter. All WSDM requests will be handled (at higher level) by this servlet.

See Also:
Serialized Form

Constructor Summary
WSDMAdapter()
           
 
Method Summary
protected  void doPost(HttpServletRequest request, HttpServletResponse response)
          Accepts http requests containing a soap envelope (request) and therefore acts as the main entry point of whole WS process.
 void init()
           
 
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPut, doTrace, getLastModified, service, service
 
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

WSDMAdapter

public WSDMAdapter()
Method Detail

init

public void init()
          throws ServletException
Overrides:
init in class GenericServlet
Throws:
ServletException

doPost

protected void doPost(HttpServletRequest request,
                      HttpServletResponse response)
               throws ServletException,
                      IOException
Accepts http requests containing a soap envelope (request) and therefore acts as the main entry point of whole WS process.

Overrides:
doPost in class HttpServlet
Parameters:
request - the http request.
response - the http response.
Throws:
ServletException - in case of application failure.
IOException - in case of generic I/O failure.


Licensed to the Apache Software Foundation