public abstract class TransportPipeFactory extends Object
At runtime, on the client side, JAX-WS (more specifically the default PipelineAssembler
of JAX-WS client runtime) relies on this factory to create a suitable transport Pipe
that can handle the given endpoint address.
JAX-WS extensions that provide additional transport support can
extend this class and implement the doCreate(com.sun.xml.ws.api.pipe.ClientPipeAssemblerContext) method.
They are expected to check the scheme of the endpoint address
(and possibly some other settings from bindings), and create
their transport pipe implementations accordingly.
For example,
class MyTransportPipeFactoryImpl {
Pipe doCreate(...) {
String scheme = address.getURI().getScheme();
if(scheme.equals("foo"))
return new MyTransport(...);
else
return null;
}
}
TransportPipeFactory look-up follows the standard service
discovery mechanism, so you need
META-INF/services/com.sun.xml.ws.api.pipe.TransportPipeFactory.
One of the JAX-WS operation mode is supposedly where it doesn't have no WSDL whatsoever. How do we identify the endpoint in such case?
StandalonePipeAssembler| Constructor and Description |
|---|
TransportPipeFactory() |
| Modifier and Type | Method and Description |
|---|---|
static Pipe |
create(ClassLoader classLoader,
ClientPipeAssemblerContext context)
|
abstract Pipe |
doCreate(ClientPipeAssemblerContext context)
Creates a transport
Pipe for the given port, if this factory can do so,
or return null. |
public abstract Pipe doCreate(@NotNull ClientPipeAssemblerContext context)
Pipe for the given port, if this factory can do so,
or return null.context - Object that captures various contextual information
that can be used to determine the pipeline to be assembled.TransportPipeFactorys
that can. Or non-null.WebServiceException - if this factory is capable of creating a transport pipe but some fatal
error prevented it from doing so. This exception will be propagated
back to the user application, and no further TransportPipeFactorys
are consulted.public static Pipe create(@Nullable ClassLoader classLoader, @NotNull ClientPipeAssemblerContext context)
PipelineAssemblerFactorys and create
a suitable PipelineAssembler.classLoader - used to locate META-INF/servces files.PipelineAssembler.Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved.