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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DDispatchImpl.java301 final URI endpointURI = new URI(endpoint);
302 resolvedEndpoint = resolveURI(endpointURI, pathInfo, queryString);
312 protected @NotNull String resolveURI(@NotNull URI endpointURI, @Nullable String pathInfo, @Nullable String queryString) { argument
318 URI tp = new URI(null, null, endpointURI.getPath(), queryString, null);
319 result = endpointURI.resolve(tp);
327 final String path = (pathInfo != null) ? pathInfo : endpointURI.getPath();
330 //return endpointURI.resolve(temp).toURL().toExternalForm();
348 return new URL(endpointURI.toURL(), spec.toString()).toExternalForm();

Completed in 29 milliseconds