public class JAXWSServletModule
extends com.sun.xml.ws.transport.http.servlet.ServletModule
In the current JSR 109 design, each endpoint has a unique JAXWSContainer. On the other hand, the requirements imposed by WSIT WS-MetadataExchange require that all endpoints sharing a context root share a ServletMoule.
Therefore, in general, multiple JAXWSContainers will share a JAXWSServletModule, so
JAXWSContainer must use a lookup in the static JAXWSServletModule.modules
to find
its associated module.
Modifier and Type | Method and Description |
---|---|
void |
addEndpoint(String uri,
com.sun.xml.ws.transport.http.servlet.ServletAdapter adapter) |
static void |
destroy(String contextPath) |
List<com.sun.xml.ws.api.server.BoundEndpoint> |
getBoundEndpoints() |
String |
getContextPath() |
static JAXWSServletModule |
getServletModule(String contextPath) |
public static JAXWSServletModule getServletModule(String contextPath)
public static void destroy(String contextPath)
public void addEndpoint(String uri, com.sun.xml.ws.transport.http.servlet.ServletAdapter adapter)
@NotNull public List<com.sun.xml.ws.api.server.BoundEndpoint> getBoundEndpoints()
getBoundEndpoints
in class com.sun.xml.ws.api.server.Module
@NotNull public String getContextPath()
getContextPath
in class com.sun.xml.ws.api.server.WebModule
Copyright © 2019. All rights reserved.