Searched refs:getContextPath (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DWebModule.java46 * This method follows the convention of the <tt>HttpServletRequest.getContextPath()</tt>,
55 public abstract @NotNull String getContextPath(); method in class:WebModule
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpExchange.java161 public abstract String getContextPath(); method in class:HttpExchange
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DServerAdapter.java85 return getAddress(webModule.getContextPath());
H A DPortableConnectionImpl.java206 sb.append(httpExchange.getContextPath());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DMonitorBase.java105 final String contextPath = getContextPath(endpoint);
128 private String getContextPath(final WSEndpoint endpoint) { method in class:MonitorBase
139 Method getContextPath = servletContextClass.getDeclaredMethod("getContextPath");
140 getContextPath.setAccessible(true);
141 return (String) getContextPath.invoke(servletContext);
145 logger.log(Level.FINEST, "getContextPath", t);

Completed in 55 milliseconds