org.eclipse.higgins.sts.binding.axis1x
Class Servlet
java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
org.apache.axis.transport.http.AxisServletBase
org.eclipse.higgins.sts.binding.axis1x.Servlet
- All Implemented Interfaces:
- Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig
- public class Servlet
- extends org.apache.axis.transport.http.AxisServletBase
- See Also:
- Serialized Form
|
Constructor Summary |
Servlet()
create a new servlet instance |
|
Method Summary |
void |
doGet(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Process GET requests. |
void |
doPost(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Process a POST to the servlet by handing it off to the Axis Engine. |
void |
init()
Initialization method. |
void |
initQueryStringHandlers()
Initialize a Handler for the transport defined in the Axis server config. |
| Methods inherited from class org.apache.axis.transport.http.AxisServletBase |
destroy, getEngine, getEngine, getLoadCounter, getServletContext, isDevelopment |
| Methods inherited from class javax.servlet.http.HttpServlet |
service |
| Methods inherited from class javax.servlet.GenericServlet |
getInitParameter, getInitParameterNames, getServletConfig, getServletInfo, getServletName, init, log, log |
INIT_PROPERTY_TRANSPORT_NAME
public static final String INIT_PROPERTY_TRANSPORT_NAME
- See Also:
- Constant Field Values
INIT_PROPERTY_USE_SECURITY
public static final String INIT_PROPERTY_USE_SECURITY
- See Also:
- Constant Field Values
INIT_PROPERTY_ENABLE_LIST
public static final String INIT_PROPERTY_ENABLE_LIST
- See Also:
- Constant Field Values
INIT_PROPERTY_JWS_CLASS_DIR
public static final String INIT_PROPERTY_JWS_CLASS_DIR
- See Also:
- Constant Field Values
INIT_PROPERTY_DISABLE_SERVICES_LIST
public static final String INIT_PROPERTY_DISABLE_SERVICES_LIST
- See Also:
- Constant Field Values
INIT_PROPERTY_SERVICES_PATH
public static final String INIT_PROPERTY_SERVICES_PATH
- See Also:
- Constant Field Values
Servlet
public Servlet()
- create a new servlet instance
init
public void init()
throws javax.servlet.ServletException
- Initialization method.
- Throws:
javax.servlet.ServletException
doGet
public void doGet(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws javax.servlet.ServletException,
IOException
- Process GET requests. This includes handoff of pseudo-SOAP requests
- Parameters:
request - request inresponse - request out
- Throws:
javax.servlet.ServletException
IOException
doPost
public void doPost(javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
throws javax.servlet.ServletException,
IOException
- Process a POST to the servlet by handing it off to the Axis Engine.
Here is where SOAP messages are received
- Parameters:
req - posted requestres - respose
- Throws:
javax.servlet.ServletException - trouble
IOException - different trouble
initQueryStringHandlers
public void initQueryStringHandlers()
- Initialize a Handler for the transport defined in the Axis server config.
This includes optionally filling in query string handlers.