Searched defs:client (Results 1 - 25 of 113) sorted by relevance

12345

/openjdk7/jdk/test/java/net/Socket/
H A DRST.java33 Socket client; field in class:RST
37 client.setSoLinger(true, 0); // hard reset
38 client.close();
46 client = new Socket("localhost", ss.getLocalPort());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A Dpackage-info.java28 * <P>This document describes the architecture of client side
32 * <img src='../../../../../jaxws/basic-client.seq.png'>
34 * <img src='../../../../../jaxws/client-async.seq.png'>
39 * {@link com.sun.xml.internal.ws.client.WebService} provides client view of a Web service.
40 * WebService.getPort returns an instance of {@link com.sun.xml.internal.ws.client.EndpointIFInvocationHandler}
43 * {@link com.sun.xml.internal.ws.client.EndpointIFInvocationHandler#invoke}. This method
54 * two types of client-side MessageDispatchers for JAX-WS 2.0.1,
55 * {@link com.sun.xml.internal.ws.protocol.soap.client.SOAPMessageDispatcher} and
56 * {@link com.sun.xml.internal.ws.protocol.xml.client
[all...]
H A DClientContainer.java26 package com.sun.xml.internal.ws.client;
H A DResponseContextReceiver.java26 package com.sun.xml.internal.ws.client;
H A DAsyncInvoker.java26 package com.sun.xml.internal.ws.client;
35 * Invokes {@link Tube}line asynchronously for the client's async API(for e.g.: Dispatch#invokeAsync}
H A DBindingProviderProperties.java26 package com.sun.xml.internal.ws.client;
35 "com.sun.xml.internal.ws.client.http.HostnameVerificationProperty";
37 "com.sun.xml.internal.ws.client.http.CookieJar";
40 "com.sun.xml.internal.ws.client.http.RedirectRequestProperty";
49 "com.sun.xml.internal.ws.client.handle";
H A DClientTransportException.java26 package com.sun.xml.internal.ws.client;
49 return "com.sun.xml.internal.ws.resources.client";
H A DContentNegotiation.java26 package com.sun.xml.internal.ws.client;
32 * client transport will be performed to negotiate the encoding of XML infoset.
35 * A value of {@link #pessimistic} means the client transport will assume
38 * (The client transport initially and pessimistically assumes that a service
41 * A value of {@link #optimistic} means the client transport will assume
43 * (The client transport optimistically assumes that a service
56 public static final String PROPERTY = "com.sun.xml.internal.ws.client.ContentNegotiation";
H A DMonitorRootClient.java26 package com.sun.xml.internal.ws.client;
50 @Description("Metro Web Service client")
62 com.sun.xml.internal.ws.util.Constants.LoggingDomain + ".client.stub");
H A DSCAnnotations.java26 package com.sun.xml.internal.ws.client;
H A DSEIPortInfo.java26 package com.sun.xml.internal.ws.client;
H A DSenderException.java26 package com.sun.xml.internal.ws.client;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A Dpacakge-info.java29 package com.sun.xml.internal.ws.client.sei;
H A DCallbackMethodHandler.java26 package com.sun.xml.internal.ws.client.sei;
H A DMethodHandler.java26 package com.sun.xml.internal.ws.client.sei;
61 * If used on the client side, a {@link WebServiceException} signals an error
H A DPollingMethodHandler.java26 package com.sun.xml.internal.ws.client.sei;
/openjdk7/jdk/src/share/sample/nio/chatserver/
H A DClientReader.java62 * read on the client. Handles closed channels and errors while reading.
63 * If the client is still connected a new round of actions are called.
65 public void run(final Client client) { argument
66 callback.beforeRead(client);
67 client.read(new CompletionHandler<Integer, ByteBuffer>() {
72 client.close();
73 System.out.println("Closing connection to " + client);
74 chatServer.removeClient(client);
76 callback.onData(client, buffer, result);
78 client
[all...]
H A DDataReader.java44 void beforeRead(Client client); argument
45 void onData(Client client, ByteBuffer buffer, int bytes); argument
H A DMessageReader.java62 * @param client the client to read messages from
65 public void beforeRead(Client client) { argument
67 String message = client.nextMessage();
69 chatServer.writeMessageToClients(client, message);
70 message = client.nextMessage();
76 * @param client the client to append messages to
81 public void onData(Client client, ByteBuffer buffer, int bytes) { argument
84 client
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/client/p2p/
H A DHttpSOAPConnectionFactory.java26 package com.sun.xml.internal.messaging.saaj.client.p2p;
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DBasicAccept.java88 static void client(int port) throws Exception { method in class:BasicAccept
111 // Only happens when server and client are on separate machines
143 client(server.port());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/client/
H A DClientPipelineHook.java26 package com.sun.xml.internal.ws.api.client;
34 * their own pipes into the client pipeline.
H A DSelectOptimalEncodingFeature.java26 package com.sun.xml.internal.ws.api.client;
37 * encoding by the client when sending outbound messages.
43 * depending on the configuration and capabilities of the client
51 * If this feature is enabled by the client and the Service supports the
54 * Fast Infoset encoding will be automatically selected by the client.
57 * also be a client side thing. If the former then this class should be
66 public static final String ID = "http://java.sun.com/xml/ns/jaxws/client/selectOptimalEncoding";
H A DServiceInterceptorFactory.java26 package com.sun.xml.internal.ws.api.client;
H A DWSPortInfo.java26 package com.sun.xml.internal.ws.api.client;

Completed in 129 milliseconds

12345