| org.apache.geronimo.webservices.WebServiceContainer
All known Subclasses: org.apache.geronimo.jetty6.app.MockWebServiceContainer, org.apache.geronimo.axis.AxisResponse, org.apache.geronimo.axis2.Axis2Response, org.apache.geronimo.axis2.Axis2WebServiceContainer, org.apache.geronimo.axis2.Axis2Request, org.apache.geronimo.cxf.CXFWebServiceContainer, org.apache.geronimo.tomcat.deployment.MockWebServiceContainer, org.apache.geronimo.axis.server.AxisWebServiceContainer, org.apache.geronimo.tomcat.app.MockWebServiceContainer, org.apache.geronimo.axis.AxisRequest,
WebServiceContainer | public interface WebServiceContainer extends Serializable(Code) | | version: $Rev: 504138 $ $Date: 2007-02-06 05:51:47 -0800 (Tue, 06 Feb 2007) $ |
Inner Class :public interface Request | |
Inner Class :public interface Response | |
Field Summary | |
public String | LOCATION_REPLACEMENT_TOKEN | final public static String | MESSAGE_CONTEXT Used when this WebServiceContainer is servicing a POJO implementing the
ServiceLifecycle interface, in which case the WebServiceContainer is expected
to put the JAX-RPC MessageContext it creates in the Request instance. | final public static String | POJO_INSTANCE Used when this WebServiceContainer is servicing a POJO, in which case
the pojo instance is held by the enclosing servlet/invoker and passed in
the Request instance to the container. | final public static String | SERVLET_CONTEXT Used for JAX-WS MessageContext. | final public static String | SERVLET_REQUEST Used for JAX-WS MessageContext. | final public static String | SERVLET_RESPONSE Used for JAX-WS MessageContext. |
Method Summary | |
void | destroy() | void | getWsdl(Request req, Response res) | void | invoke(Request request, Response response) |
LOCATION_REPLACEMENT_TOKEN | public String LOCATION_REPLACEMENT_TOKEN(Code) | | Token inserted into wsdl where location should be replaced with the real location
|
MESSAGE_CONTEXT | final public static String MESSAGE_CONTEXT(Code) | | Used when this WebServiceContainer is servicing a POJO implementing the
ServiceLifecycle interface, in which case the WebServiceContainer is expected
to put the JAX-RPC MessageContext it creates in the Request instance.
|
POJO_INSTANCE | final public static String POJO_INSTANCE(Code) | | Used when this WebServiceContainer is servicing a POJO, in which case
the pojo instance is held by the enclosing servlet/invoker and passed in
the Request instance to the container.
|
SERVLET_CONTEXT | final public static String SERVLET_CONTEXT(Code) | | Used for JAX-WS MessageContext. MessageContext must expose ServletContext.
|
SERVLET_REQUEST | final public static String SERVLET_REQUEST(Code) | | Used for JAX-WS MessageContext. MessageContext must expose HttpServletRequest.
|
SERVLET_RESPONSE | final public static String SERVLET_RESPONSE(Code) | | Used for JAX-WS MessageContext. MessageContext must expose HttpServletResponse.
|
invoke | void invoke(Request request, Response response) throws Exception(Code) | | |
|
|