Searched refs:endpoint (Results 1 - 25 of 59) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DAdapter.java76 protected final WSEndpoint<?> endpoint; field in class:Adapter
92 this.codec = endpoint.createCodec();
93 this.head = endpoint.createPipeHead();
112 * messages to the given endpoint.
114 protected Adapter(WSEndpoint endpoint) { argument
115 assert endpoint!=null;
116 this.endpoint = endpoint;
118 endpoint.getComponentRegistry().add(this);
142 * Gets the endpoint tha
[all...]
H A DAbstractServerAsyncTransport.java47 private final WSEndpoint endpoint; field in class:AbstractServerAsyncTransport
54 * @param endpoint webservices requests are directed towards this endpoint
56 public AbstractServerAsyncTransport(WSEndpoint endpoint) { argument
57 this.endpoint = endpoint;
58 codecPool = new CodecPool(endpoint);
98 * response code needs to be sent before invoking the endpoint.
134 endpoint.schedule(request, new WSEndpoint.CompletionCallback() {
148 WSEndpoint endpoint; field in class:AbstractServerAsyncTransport.CodecPool
150 CodecPool(WSEndpoint endpoint) argument
[all...]
H A DHttpEndpoint.java44 * @param endpoint that needs to be deployed at http server
45 * @return transport object for the endpoint
47 public static HttpEndpoint create(@NotNull WSEndpoint endpoint) { argument
48 return new com.sun.xml.internal.ws.transport.http.server.HttpEndpoint(null, HttpAdapter.createAlone(endpoint));
52 * Publishes this endpoint at a localhost's http address.
54 * @param address endpoint's http address
60 * Stops the published endpoint
H A DEndpointAwareCodec.java41 * when the codec is associated with an endpoint.
43 void setEndpoint(@NotNull WSEndpoint endpoint); argument
H A DWebServiceContextDelegate.java88 * Gets the address of the endpoint.
97 * @param endpoint
98 * The endpoint whose address will be returned.
103 * Absolute URL of the endpoint. This shold be an address that the client
108 @NotNull String getEPRAddress(@NotNull Packet request, @NotNull WSEndpoint endpoint); argument
127 * choose to find the corresponding servlet endpoint by {@link Module#getBoundEndpoints()}
143 * @param endpoint
144 * The endpoint whose address will be returned.
150 @Nullable String getWSDLAddress(@NotNull Packet request, @NotNull WSEndpoint endpoint); argument
H A DEndpointReferenceExtensionContributor.java36 * extensibility elements inside the EndpointReference of the endpoint. If any EPR extensibility elements are configured
37 * for an endpoint, the EndpointReference is published inside the WSDL.
45 * @param extension EPRExtension is passed if an extension with same QName is already configured on the endpoint
50 public abstract WSEndpointReference.EPRExtension getEPRExtension(WSEndpoint endpoint, @Nullable WSEndpointReference.EPRExtension extension ); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DAbstractWebServiceContext.java50 private final WSEndpoint endpoint; field in class:AbstractWebServiceContext
52 public AbstractWebServiceContext(@NotNull WSEndpoint endpoint) { argument
53 this.endpoint = endpoint;
89 String address = packet.webServiceContextDelegate.getEPRAddress(packet, endpoint);
91 if(endpoint.getServiceDefinition() != null) {
92 wsdlAddress = packet.webServiceContextDelegate.getWSDLAddress(packet,endpoint);
94 return clazz.cast(((WSEndpointImpl)endpoint).getEndpointReference(clazz,address,wsdlAddress, referenceParameters));
H A DMonitorRootService.java91 @Description("Metro Web Service endpoint")
95 private final WSEndpoint endpoint; field in class:MonitorRootService
97 MonitorRootService(final WSEndpoint endpoint) { argument
98 this.endpoint = endpoint;
108 return endpoint.getPolicyMap() != null ?
109 endpoint.getPolicyMap().toString() : null;
115 return endpoint.getContainer();
122 return endpoint.getPortName();
128 return endpoint
[all...]
H A DAbstractMultiInstanceResolver.java81 public void start(WSWebServiceContext wsc, WSEndpoint endpoint) { argument
82 resourceInjector = getResourceInjector(endpoint);
84 this.owner = endpoint;
H A DInvokerTube.java55 private WSEndpoint endpoint; field in class:InvokerTube
61 public void setEndpoint(WSEndpoint endpoint) { argument
62 this.endpoint = endpoint;
63 WSWebServiceContext webServiceContext = new AbstractWebServiceContext(endpoint) {
69 invoker.start(webServiceContext,endpoint);
73 return endpoint;
H A DSingletonResolver.java53 public void start(WSWebServiceContext wsc, WSEndpoint endpoint) { argument
54 getResourceInjector(endpoint).inject(wsc,singleton);
H A DServerSchemaValidationTube.java66 public ServerSchemaValidationTube(WSEndpoint endpoint, WSBinding binding, argument
72 if (endpoint.getServiceDefinition() != null) {
73 MetadataResolverImpl mdresolver = new MetadataResolverImpl(endpoint.getServiceDefinition());
74 Source[] sources = getSchemaSources(endpoint.getServiceDefinition(), mdresolver);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DServerAdapter.java57 protected ServerAdapter(String name, String urlPattern, WSEndpoint endpoint, ServerAdapterList owner) { argument
58 super(endpoint, owner, urlPattern);
61 Module module = endpoint.getContainer().getSPI(Module.class);
63 LOGGER.warning("Container "+endpoint.getContainer()+" doesn't support "+Module.class);
70 * Gets the name of the endpoint as given in the <tt>sun-jaxws.xml</tt>
80 WebModule webModule = endpoint.getContainer().getSPI(WebModule.class);
83 throw new WebServiceException("Container "+endpoint.getContainer()+" doesn't support "+WebModule.class);
94 throw new WebServiceException("Unable to compute address for "+endpoint,e);
99 endpoint.dispose();
H A DServerAdapterList.java33 protected ServerAdapter createHttpAdapter(String name, String urlPattern, WSEndpoint<?> endpoint) { argument
34 return new ServerAdapter(name, urlPattern, endpoint, this);
H A DPortableConnectionImpl.java139 public @NotNull String getEPRAddress(Packet request, WSEndpoint endpoint) { argument
141 String address = resolver.getAddressFor(endpoint.getServiceName(), endpoint.getPortName().getLocalPart());
143 throw new WebServiceException(WsservletMessages.SERVLET_NO_ADDRESS_AVAILABLE(endpoint.getPortName()));
162 public String getWSDLAddress(@NotNull Packet request, @NotNull WSEndpoint endpoint) { argument
163 String eprAddress = getEPRAddress(request,endpoint);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/config/management/
H A DManagedEndpointFactory.java42 * management has not been enabled for this endpoint, it will return the original
45 * @param <T> The endpoint implementation type.
46 * @param endpoint The endpoint instance.
47 * @param attributes The parameters with which the original endpoint instance
52 public <T> WSEndpoint<T> createEndpoint(WSEndpoint<T> endpoint, EndpointCreationAttributes attributes); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DServerTubeAssemblerContext.java62 private final WSEndpoint endpoint; field in class:ServerTubeAssemblerContext
69 @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint,
73 this.endpoint = endpoint;
76 this.binding = (BindingImpl)endpoint.getBinding();
82 * The created pipeline will use seiModel to get java concepts for the endpoint
109 return endpoint;
170 ServerPipelineHook hook = endpoint.getContainer().getSPI(ServerPipelineHook.class);
172 ServerPipeAssemblerContext ctxt = new ServerPipeAssemblerContext(seiModel, wsdlModel, endpoint, terminal, isSynchronous);
182 ServerPipelineHook hook = endpoint
68 ServerTubeAssemblerContext(@ullable SEIModel seiModel, @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint, @NotNull Tube terminal, boolean isSynchronous) argument
[all...]
H A DServerPipeAssemblerContext.java47 public ServerPipeAssemblerContext(@Nullable SEIModel seiModel, @Nullable WSDLPort wsdlModel, @NotNull WSEndpoint endpoint, @NotNull Tube terminal, boolean isSynchronous) { argument
48 super(seiModel, wsdlModel, endpoint, terminal, isSynchronous);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapterList.java61 public T createAdapter(String name, String urlPattern, WSEndpoint<?> endpoint) { argument
62 T t = createHttpAdapter(name, urlPattern, endpoint);
64 WSDLPort port = endpoint.getPort();
76 protected abstract T createHttpAdapter(String name, String urlPattern, WSEndpoint<?> endpoint); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DEPRSDDocumentFilter.java52 * specifc to an endpoint.
57 private final WSEndpointImpl<?> endpoint; field in class:EPRSDDocumentFilter
60 public EPRSDDocumentFilter(@NotNull WSEndpointImpl<?> endpoint) { argument
61 this.endpoint = endpoint;
67 if (endpoint.getServiceName().getLocalPart().equals(serviceName) && endpoint.getPortName().getLocalPart().equals(portName))
68 return endpoint;
72 Module module = endpoint.getContainer().getSPI(Module.class);
110 private String portAddress; // when a complete epr is written, endpoint addres
[all...]
H A DWsaServerTube.java67 private WSEndpoint endpoint; field in class:WsaServerTube
78 public WsaServerTube(WSEndpoint endpoint, @NotNull WSDLPort wsdlPort, WSBinding binding, Tube next) { argument
80 this.endpoint = endpoint;
86 endpoint = that.endpoint;
229 // we need to assemble a pipeline to talk to this endpoint.
232 new ClientTubeAssemblerContext(adrs, wsdlPort, (WSService) null, binding,endpoint.getContainer(),((BindingImpl)binding).createCodec(),null));
/openjdk7/jdk/src/share/classes/java/net/
H A DServerSocket.java320 * @param endpoint The IP address & port number to bind to.
325 * @throws IllegalArgumentException if endpoint is a
329 public void bind(SocketAddress endpoint) throws IOException { argument
330 bind(endpoint, 50);
347 * @param endpoint The IP address & port number to bind to.
354 * @throws IllegalArgumentException if endpoint is a
358 public void bind(SocketAddress endpoint, int backlog) throws IOException { argument
363 if (endpoint == null)
364 endpoint = new InetSocketAddress(0);
365 if (!(endpoint instanceo
[all...]
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_MidiUtils.c58 "A source endpoint was passed to a function expecting a destination, or vice versa.";
195 MIDIEndpointRef endpoint; local
198 endpoint = MIDIGetSource(deviceID);
200 endpoint = MIDIGetDestination(deviceID);
205 if (!endpoint) {
212 status = MIDIObjectGetIntegerProperty(endpoint, kMIDIPropertyDriverVersion, &driverVersion);
221 status = MIDIObjectGetStringProperty(endpoint, propertyID, &pname);
466 MIDIEndpointRef endpoint = (MIDIEndpointRef) NULL; local
478 // get the device's endpoint.
489 endpoint
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DDGCClient.java126 * given endpoint.
130 * Look up the given endpoint and register the refs with it.
131 * The retrieved entry may get removed from the global endpoint
173 /** the endpoint that this entry is for */
174 private Endpoint endpoint; field in class:DGCClient.EndpointEntry
178 /** table of refs held for endpoint: maps LiveRef to RefEntry */
186 /** absolute time to renew current lease to this endpoint */
188 /** absolute time current lease to this endpoint will expire */
207 /** global endpoint table: maps Endpoint to EndpointEntry */
237 private EndpointEntry(final Endpoint endpoint) { argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenOptions.java186 public Class endpoint; field in class:WsgenOptions
246 endpoint = clazz;
252 BindingID binding = BindingID.parse(endpoint);
256 throw new BadCommandLineException(WscompileMessages.WSGEN_CANNOT_GEN_WSDL_FOR_SOAP_12_BINDING(binding.toString(), endpoint.getName()));
259 throw new BadCommandLineException(WscompileMessages.WSGEN_CANNOT_GEN_WSDL_FOR_NON_SOAP_BINDING(binding.toString(), endpoint.getName()));

Completed in 110 milliseconds

123