Searched refs:endpoint (Results 26 - 50 of 59) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DServerConnectionImpl.java210 public @NotNull String getEPRAddress(Packet request, WSEndpoint endpoint) { argument
214 String address = resolver.getAddressFor(endpoint.getServiceName(), endpoint.getPortName().getLocalPart());
216 throw new WebServiceException(WsservletMessages.SERVLET_NO_ADDRESS_AVAILABLE(endpoint.getPortName()));
221 public String getWSDLAddress(@NotNull Packet request, @NotNull WSEndpoint endpoint) { argument
222 String eprAddress = getEPRAddress(request,endpoint);
272 * through which the application reached the endpoint.
H A DEndpointImpl.java134 * @param wse created endpoint
321 "Cannot publish this endpoint. Endpoint has been already published.");
325 "Cannot publish this endpoint. Endpoint has been already stopped.");
345 private HttpAdapter getAdapter(WSEndpoint endpoint, String urlPattern) { argument
359 return adapterList.createAdapter("", urlPattern, endpoint);
384 public void start(@NotNull WSWebServiceContext wsc, @NotNull WSEndpoint endpoint) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/v200408/
H A DMemberSubmissionWsaServerTube.java46 public MemberSubmissionWsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) { argument
47 super(endpoint, wsdlPort, binding, next);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DInvoker.java37 * Hides the detail of calling into application endpoint implementation.
55 * to do a endpoint-specific initialization process.
60 * @param endpoint
62 public void start(@NotNull WSWebServiceContext wsc, @NotNull WSEndpoint endpoint) { argument
H A DWSEndpoint.java67 * endpoint. A hosted service usually handles multiple concurrent
68 * requests. To do this efficiently, an endpoint handles incoming
70 * for each endpoint.
99 * how an endpoint is configured to host a service. See the getXXX methods
124 * Gets the application endpoint's serviceName. It could be got from DD or annotations
131 * Gets the application endpoint's portName. It could be got from DD or annotations
138 * Gets the application endpoint {@link Class} that eventually serves the request.
168 * Gets the port that this endpoint is serving.
355 * may change if the endpoint is managed.
361 * with this endpoint
[all...]
H A DInstanceResolver.java112 * to do a endpoint-specific initialization process.
118 public void start(@NotNull WSWebServiceContext wsc, @NotNull WSEndpoint endpoint) { argument
222 public void start(@NotNull WSWebServiceContext wsc, @NotNull WSEndpoint endpoint) {
223 InstanceResolver.this.start(wsc,endpoint);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/config/management/policy/
H A DManagedServiceAssertion.java74 * Return ManagedService assertion if there is one associated with the endpoint.
76 * @param endpoint The endpoint. Must not be null.
78 * @throws WebServiceException If computing the effective policy of the endpoint failed.
80 public static ManagedServiceAssertion getAssertion(WSEndpoint endpoint) throws WebServiceException { argument
81 LOGGER.entering(endpoint);
85 final PolicyMap policyMap = endpoint.getPolicyMap();
87 policyMap, endpoint.getServiceName(), endpoint.getPortName(), ManagedServiceAssertion.class);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapter.java87 * Empty if the endpoint doesn't have {@link ServiceDefinition}.
121 * @param endpoint web service endpoint
124 public static HttpAdapter createAlone(WSEndpoint endpoint) { argument
125 return new DummyList().createAdapter("","",endpoint);
131 * @param endpoint web service endpoint
134 protected HttpAdapter(WSEndpoint endpoint, HttpAdapterList<? extends HttpAdapter> owner) { argument
135 this(endpoint,owner,null);
138 protected HttpAdapter(WSEndpoint endpoint, HttpAdapterLis argument
709 createHttpAdapter(String name, String urlPattern, WSEndpoint<?> endpoint) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java110 Endpoint endpoint = new EndpointImpl(
113 endpoint.publish(address);
114 return endpoint;
124 Endpoint endpoint = new EndpointImpl(
126 endpoint.publish(address);
127 return endpoint;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DW3CWsaServerTube.java53 public W3CWsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) { argument
54 super(endpoint, wsdlPort, binding, next);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DAsyncProviderInvokerTube.java59 * invoke() method of {@linke Provider} endpoint. The return value from
117 AsyncWebServiceContext(WSEndpoint endpoint, Packet packet) { argument
118 super(endpoint);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DBaseSSLSocketImpl.java123 * Returns the address of the endpoint this socket is connected to
135 * Returns the address of the endpoint this socket is connected to
156 * @param endpoint the <code>SocketAddress</code>
159 public final void connect(SocketAddress endpoint) throws IOException { argument
160 connect(endpoint, 0);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DTCPTransport.java183 * endpoint <I>ep</I>. A Channel is an object that creates and
186 * @param ep the endpoint to which connections will be generated.
188 * generate connections to this endpoint
211 * endpoint <I>ep</I>.
304 * Listen on transport's endpoint.
677 TCPEndpoint endpoint = getEndpoint();
678 int port = endpoint.getPort();
769 endpoint.getClientSocketFactory(),
770 endpoint.getServerSocketFactory());
782 // suggest endpoint (i
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpClientTransport.java85 private final EndpointAddress endpoint; field in class:HttpClientTransport
91 endpoint = packet.endpointAddress;
202 httpConnection = (HttpURLConnection) endpoint.openConnection();
203 String scheme = endpoint.getURI().getScheme();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DMonitorBase.java82 @NotNull public ManagedObjectManager createManagedObjectManager(final WSEndpoint endpoint) { argument
86 // different endpoint addresses.
91 // The endpoint address would be unique, but we do not know
92 // the endpoint address until the first request comes in,
96 endpoint.getServiceName().getLocalPart()
98 + endpoint.getPortName().getLocalPart();
105 final String contextPath = getContextPath(endpoint);
111 ManagedServiceAssertion.getAssertion(endpoint);
118 return disabled("This endpoint", rootName);
123 return disabled("Global endpoint", rootNam
128 getContextPath(final WSEndpoint endpoint) argument
[all...]
H A DWSEndpointImpl.java104 * Set to true once we start shutting down this endpoint.
239 request.endpoint = WSEndpointImpl.this;
266 Packet response = request.createServerResponse(faultMsg, request.endpoint.getPort(), null,
267 request.endpoint.getBinding());
292 request.endpoint = WSEndpointImpl.this;
307 response = request.createServerResponse(faultMsg, request.endpoint.getPort(), null, request.endpoint.getBinding());
346 com.sun.xml.internal.ws.util.Constants.LoggingDomain + ".server.endpoint");
H A DAbstractInstanceResolver.java142 protected static ResourceInjector getResourceInjector(WSEndpoint endpoint) { argument
143 ResourceInjector ri = endpoint.getContainer().getSPI(ResourceInjector.class);
/openjdk7/jdk/src/share/classes/java/net/
H A DSocksSocketImpl.java262 InetSocketAddress endpoint,
264 if (!(endpoint.getAddress() instanceof Inet4Address)) {
269 out.write((endpoint.getPort() >> 8) & 0xff);
270 out.write((endpoint.getPort() >> 0) & 0xff);
271 out.write(endpoint.getAddress().getAddress());
290 external_address = endpoint;
313 * Connects the Socks Socket to the specified endpoint. It will first
316 * further traffic will go to the "real" endpoint.
318 * @param endpoint the <code>SocketAddress</code> to connect to.
323 * @throws IllegalArgumentException if endpoint i
261 connectV4(InputStream in, OutputStream out, InetSocketAddress endpoint, long deadlineMillis) argument
327 connect(SocketAddress endpoint, int timeout) argument
[all...]
H A DSocket.java39 * "sockets"). A socket is an endpoint for communication
517 * @param endpoint the <code>SocketAddress</code>
522 * @throws IllegalArgumentException if endpoint is null or is a
527 public void connect(SocketAddress endpoint) throws IOException { argument
528 connect(endpoint, 0);
536 * @param endpoint the <code>SocketAddress</code>
543 * @throws IllegalArgumentException if endpoint is null or is a
548 public void connect(SocketAddress endpoint, int timeout) throws IOException { argument
549 if (endpoint == null)
561 if (!(endpoint instanceo
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DDispatchImpl.java80 * for the dynamic invocation of a service endpoint operation using XML
281 //resolve endpoint look for query parameters, pathInfo
282 String endpoint = (String) requestContext.get(BindingProvider.ENDPOINT_ADDRESS_PROPERTY);
283 if (endpoint == null)
284 endpoint = message.endpointAddress.toString();
299 if (endpoint != null) {
301 final URI endpointURI = new URI(endpoint);
304 throw new WebServiceException(DispatchMessages.INVALID_URI(endpoint));
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DLiveRef.java63 public LiveRef(ObjID objID, Endpoint endpoint, boolean isLocal) { argument
64 ep = endpoint;
172 return "[endpoint:" + ep + "(" + type + ")," +
271 // All together now write out the endpoint, id, and flag
273 // (need to choose whether or not to use old JDK1.1 endpoint format)
289 // Now read in the endpoint, id, and result flag
290 // (need to choose whether or not to read old JDK1.1 endpoint format)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java111 if(!buildModel(options.endpoint.getName(), listener)){
181 public boolean buildModel(String endpoint, Listener listener) throws BadCommandLineException { argument
200 args[i++] = endpoint;
218 endpointClass = classLoader.loadClass(endpoint);
220 throw new BadCommandLineException(WscompileMessages.WSGEN_CLASS_NOT_FOUND(endpoint));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DPacket.java185 this.endpoint = that.endpoint;
251 if(endpoint != null) {
252 opDispatcher = ((WSEndpointImpl)endpoint).getOperationDispatcher();
333 * The endpoint address to which this message is sent to.
503 public WSEndpoint endpoint; field in class:Packet
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DConnection.java304 Object endpoint = createInetSocketAddress(host, port);
317 endpoint, new Integer(connectTimeout)});
347 Object endpoint = createInetSocketAddress(host, port);
356 endpoint, new Integer(connectTimeout)});
/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DBrokenConnectionTest.java648 public void bind(SocketAddress endpoint) throws IOException { argument
649 ss.bind(endpoint);
652 public void bind(SocketAddress endpoint, int backlog) argument
654 ss.bind(endpoint, backlog);

Completed in 280 milliseconds

123