Package org.apache.cxf.endpoint
Class ClientImpl
java.lang.Object
org.apache.cxf.interceptor.AbstractBasicInterceptorProvider
org.apache.cxf.endpoint.ClientImpl
- All Implemented Interfaces:
AutoCloseable
,Client
,ConduitSelectorHolder
,Retryable
,InterceptorProvider
,MessageObserver
public class ClientImpl
extends AbstractBasicInterceptorProvider
implements Client, Retryable, MessageObserver
-
Nested Class Summary
Modifier and TypeClassDescriptionclass
class
Nested classes/interfaces inherited from interface org.apache.cxf.endpoint.Client
Client.Contexts
-
Field Summary
Modifier and TypeFieldDescriptionprotected Bus
protected ConduitSelector
protected Executor
static final String
protected PhaseChainCache
protected Thread
protected PhaseChainCache
protected ClientOutFaultObserver
protected Map<Thread,
ClientImpl.EchoContext> static final String
When a synchronous request/response invoke is done using an asynchronous transport mechanism, this is the timeout used for waiting for the response.protected int
static final String
Fields inherited from interface org.apache.cxf.endpoint.Client
KEEP_CONDUIT_ALIVE, REQUEST_CONTEXT, RESPONSE_CONTEXT
-
Constructor Summary
ConstructorDescriptionClientImpl
(Bus b, Endpoint e) ClientImpl
(Bus b, Endpoint e, ConduitSelector sc) ClientImpl
(Bus b, Endpoint e, Conduit c) ClientImpl
(Bus bus, Service svc, QName port, EndpointImplFactory endpointImplFactory) Create a Client that uses a specific EndpointImpl. -
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
void
destroy()
Indicates that the client is no longer needed and that any resources it holds can now be freed.getBus()
Retrieves the Bus that was used to create the ClientGet the Conduit that messages for this client will be sent on.final ConduitSelector
Get the ConduitSelector responsible for retreiving the Conduit.protected final ConduitSelector
getConduitSelector
(ConduitSelector override) protected Exception
getException
(Exchange exchange) Gets the request context used for future invocationsGets the response context from the last invocation on this threadint
Object[]
Invokes an operation synchronouslyObject[]
Invokes an operation synchronouslyvoid
invoke
(ClientCallback callback, String operationName, Object... params) Invokes an operation asynchronouslyvoid
invoke
(ClientCallback callback, QName operationName, Object... params) Invokes an operation asynchronouslyvoid
invoke
(ClientCallback callback, BindingOperationInfo oi, Object... params) Invokes an operation asynchronouslyvoid
invoke
(ClientCallback callback, BindingOperationInfo oi, Object[] params, Map<String, Object> context) Invokes an operation asynchronouslyvoid
invoke
(ClientCallback callback, BindingOperationInfo oi, Object[] params, Map<String, Object> context, Exchange exchange) Invokes an operation asynchronouslyvoid
invoke
(ClientCallback callback, BindingOperationInfo oi, Object[] params, Exchange exchange) Invokes an operation asynchronouslyObject[]
invoke
(BindingOperationInfo oi, Object... params) Invokes an operation synchronouslyObject[]
Invokes an operation synchronouslyObject[]
Invokes an operation synchronouslyObject[]
invoke
(BindingOperationInfo oi, Object[] params, Exchange exchange) Object[]
invokeWrapped
(String operationName, Object... params) Invokes an operation synchronouslyObject[]
invokeWrapped
(QName operationName, Object... params) Invokes an operation synchronouslyvoid
invokeWrapped
(ClientCallback callback, String operationName, Object... params) Invokes an operation asynchronouslyvoid
invokeWrapped
(ClientCallback callback, QName operationName, Object... params) Invokes an operation asynchronouslyboolean
Checks if the Request context is thread local or global.protected void
modifyChain
(InterceptorChain chain, Message ctx, boolean in) void
Called for an incoming message, i.e.protected void
prepareConduitSelector
(Message message) protected Object[]
processResult
(Message message, Exchange exchange, BindingOperationInfo oi, Map<String, Object> resContext) void
final void
setConduitSelector
(ConduitSelector selector) Set the ConduitSelector responsible for retreiving the Conduit.protected void
setContext
(Map<String, Object> ctx, Message message) protected void
protected void
setExchangeProperties
(Exchange exchange, Endpoint endpoint, BindingOperationInfo boi) void
setExecutor
(Executor executor) Sets the executor which is used to process Asynchronous responses.protected void
setOutMessageProperties
(Message message, BindingOperationInfo boi) protected void
setParameters
(Object[] params, Message message) setResponseContext
(Map<String, Object> ctx) void
setSynchronousTimeout
(int synchronousTimeout) void
setThreadLocalRequestContext
(boolean b) Sets whether the request context is thread local or global to this client.protected PhaseInterceptorChain
setupInterceptorChain
(Endpoint endpoint) protected void
waitResponse
(Exchange exchange) Methods inherited from class org.apache.cxf.interceptor.AbstractBasicInterceptorProvider
getInFaultInterceptors, getInInterceptors, getOutFaultInterceptors, getOutInterceptors, setInFaultInterceptors, setInInterceptors, setOutFaultInterceptors, setOutInterceptors
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.cxf.interceptor.InterceptorProvider
getInFaultInterceptors, getInInterceptors, getOutFaultInterceptors, getOutInterceptors
-
Field Details
-
THREAD_LOCAL_REQUEST_CONTEXT
- See Also:
-
SYNC_TIMEOUT
When a synchronous request/response invoke is done using an asynchronous transport mechanism, this is the timeout used for waiting for the response. Default is 60 seconds.- See Also:
-
FINISHED
- See Also:
-
bus
-
conduitSelector
-
outFaultObserver
-
synchronousTimeout
protected int synchronousTimeout -
outboundChainCache
-
inboundChainCache
-
currentRequestContext
-
latestContextThread
-
requestContext
-
responseContext
-
executor
-
-
Constructor Details
-
ClientImpl
-
ClientImpl
-
ClientImpl
-
ClientImpl
Create a Client that uses a specific EndpointImpl.- Parameters:
bus
-svc
-port
-endpointImplFactory
-
-
-
Method Details
-
getBus
Description copied from interface:Client
Retrieves the Bus that was used to create the Client -
destroy
public void destroy()Description copied from interface:Client
Indicates that the client is no longer needed and that any resources it holds can now be freed. -
getEndpoint
- Specified by:
getEndpoint
in interfaceClient
-
releaseThreadContexts
public void releaseThreadContexts() -
getContexts
- Specified by:
getContexts
in interfaceClient
-
getRequestContext
Description copied from interface:Client
Gets the request context used for future invocations- Specified by:
getRequestContext
in interfaceClient
- Returns:
- context The context
-
getResponseContext
Description copied from interface:Client
Gets the response context from the last invocation on this thread- Specified by:
getResponseContext
in interfaceClient
- Returns:
- context The context
-
setResponseContext
-
isThreadLocalRequestContext
public boolean isThreadLocalRequestContext()Description copied from interface:Client
Checks if the Request context is thread local or global.- Specified by:
isThreadLocalRequestContext
in interfaceClient
- Returns:
- true if the request context is a thread local
-
setThreadLocalRequestContext
public void setThreadLocalRequestContext(boolean b) Description copied from interface:Client
Sets whether the request context is thread local or global to this client. By default, the request context is "global" in that any values set in the context are seen by all threads using this client. If set to true, the context is changed to be a ThreadLocal and values set are not seen by other threads.- Specified by:
setThreadLocalRequestContext
in interfaceClient
-
invoke
Description copied from interface:Client
Invokes an operation synchronously -
invoke
Description copied from interface:Client
Invokes an operation synchronously- Specified by:
invoke
in interfaceClient
- Parameters:
operationName
- The name of the operation to be invoked. The service namespace will be used when looking up the BindingOperationInfo.params
- The params that matches the parts of the input message of the operation. If the BindingOperationInfo supports unwrapping, it assumes the params are in the "unwrapped" form. If params are in the wrapped form, use invokeWrapped- Returns:
- The return values that matche the parts of the output message of the operation
- Throws:
Exception
-
invoke
Description copied from interface:Client
Invokes an operation synchronously- Specified by:
invoke
in interfaceClient
- Parameters:
operationName
- The name of the operation to be invokedparams
- The params that matches the parts of the input message of the operation. If the BindingOperationInfo supports unwrapping, it assumes the params are in the "unwrapped" form. If params are in the wrapped form, use invokeWrapped- Returns:
- The return values that matche the parts of the output message of the operation
- Throws:
Exception
-
invokeWrapped
Description copied from interface:Client
Invokes an operation synchronously- Specified by:
invokeWrapped
in interfaceClient
- Parameters:
operationName
- The name of the operation to be invoked. The service namespace will be used when looking up the BindingOperationInfo.params
- The params that matches the parts of the input message of the operation- Returns:
- The return values that matche the parts of the output message of the operation
- Throws:
Exception
-
invokeWrapped
Description copied from interface:Client
Invokes an operation synchronously- Specified by:
invokeWrapped
in interfaceClient
- Parameters:
operationName
- The name of the operation to be invokedparams
- The params that matches the parts of the input message of the operation- Returns:
- The return values that matche the parts of the output message of the operation
- Throws:
Exception
-
invoke
public Object[] invoke(BindingOperationInfo oi, Object[] params, Exchange exchange) throws Exception - Throws:
Exception
-
invoke
public Object[] invoke(BindingOperationInfo oi, Object[] params, Map<String, Object> context) throws ExceptionDescription copied from interface:Client
Invokes an operation synchronously- Specified by:
invoke
in interfaceClient
- Parameters:
oi
- The operation to be invokedparams
- The params that matches the parts of the input message of the operationcontext
- Optional (can be null) contextual information for the invocation- Returns:
- The return values that matche the parts of the output message of the operation
- Throws:
Exception
-
invoke
public void invoke(ClientCallback callback, String operationName, Object... params) throws Exception Description copied from interface:Client
Invokes an operation asynchronously- Specified by:
invoke
in interfaceClient
- Parameters:
callback
- The callback that is called when the response is readyoperationName
- The name of the operation to be invoked. The service namespace will be used when looking up the BindingOperationInfo.params
- The params that matches the parts of the input message of the operation. If the BindingOperationInfo supports unwrapping, it assumes the params are in the "unwrapped" form. If params are in the wrapped form, use invokeWrapped- Throws:
Exception
-
invoke
Description copied from interface:Client
Invokes an operation asynchronously- Specified by:
invoke
in interfaceClient
- Parameters:
callback
- The callback that is called when the response is readyoperationName
- The name of the operation to be invokedparams
- The params that matches the parts of the input message of the operation. If the BindingOperationInfo supports unwrapping, it assumes the params are in the "unwrapped" form. If params are in the wrapped form, use invokeWrapped- Throws:
Exception
-
invokeWrapped
public void invokeWrapped(ClientCallback callback, String operationName, Object... params) throws Exception Description copied from interface:Client
Invokes an operation asynchronously- Specified by:
invokeWrapped
in interfaceClient
- Parameters:
callback
- The callback that is called when the response is readyoperationName
- The name of the operation to be invoked. The service namespace will be used when looking up the BindingOperationInfo.params
- The params that matches the parts of the input message of the operation- Throws:
Exception
-
invokeWrapped
public void invokeWrapped(ClientCallback callback, QName operationName, Object... params) throws Exception Description copied from interface:Client
Invokes an operation asynchronously- Specified by:
invokeWrapped
in interfaceClient
- Parameters:
callback
- The callback that is called when the response is readyoperationName
- The name of the operation to be invokedparams
- The params that matches the parts of the input message of the operation- Throws:
Exception
-
invoke
public void invoke(ClientCallback callback, BindingOperationInfo oi, Object... params) throws Exception Description copied from interface:Client
Invokes an operation asynchronously -
invoke
public void invoke(ClientCallback callback, BindingOperationInfo oi, Object[] params, Map<String, Object> context) throws ExceptionDescription copied from interface:Client
Invokes an operation asynchronously- Specified by:
invoke
in interfaceClient
- Parameters:
callback
- The callback that is called when the response is readyoi
- The operation to be invokedparams
- The params that matches the parts of the input message of the operationcontext
- contextual information for the invocation- Throws:
Exception
-
invoke
public void invoke(ClientCallback callback, BindingOperationInfo oi, Object[] params, Exchange exchange) throws Exception Description copied from interface:Client
Invokes an operation asynchronously- Specified by:
invoke
in interfaceClient
- Parameters:
callback
- The callback that is called when the response is readyoi
- The operation to be invokedparams
- The params that matches the parts of the input message of the operationexchange
- The Exchange to be used for the invocation- Throws:
Exception
-
invoke
public void invoke(ClientCallback callback, BindingOperationInfo oi, Object[] params, Map<String, Object> context, Exchange exchange) throws ExceptionDescription copied from interface:Client
Invokes an operation asynchronously- Specified by:
invoke
in interfaceClient
- Parameters:
callback
- The callback that is called when the response is readyoi
- The operation to be invokedparams
- The params that matches the parts of the input message of the operationcontext
- Optional (can be null) contextual information for the invocationexchange
- Optional (can be null) The Exchange to be used for the invocation- Throws:
Exception
-
invoke
public Object[] invoke(BindingOperationInfo oi, Object[] params, Map<String, Object> context, Exchange exchange) throws ExceptionDescription copied from interface:Client
Invokes an operation synchronously- Specified by:
invoke
in interfaceClient
- Specified by:
invoke
in interfaceRetryable
- Parameters:
oi
- The operation to be invokedparams
- The params that matches the parts of the input message of the operationcontext
- Optional (can be null) contextual information for the invocationexchange
- The Exchange to be used for the invocation- Returns:
- The return values that matche the parts of the output message of the operation
- Throws:
Exception
-
processResult
protected Object[] processResult(Message message, Exchange exchange, BindingOperationInfo oi, Map<String, Object> resContext) throws Exception- Throws:
Exception
-
getException
-
setContext
-
waitResponse
- Throws:
IOException
-
setParameters
-
onMessage
Description copied from interface:MessageObserver
Called for an incoming message, i.e. where the content format(s) is/are source(s).- Specified by:
onMessage
in interfaceMessageObserver
-
getConduit
Description copied from interface:Client
Get the Conduit that messages for this client will be sent on.- Specified by:
getConduit
in interfaceClient
- Returns:
- Conduit
-
prepareConduitSelector
-
setOutMessageProperties
-
setExchangeProperties
protected void setExchangeProperties(Exchange exchange, Endpoint endpoint, BindingOperationInfo boi) -
setupInterceptorChain
-
modifyChain
-
setEndpoint
-
getSynchronousTimeout
public int getSynchronousTimeout() -
setSynchronousTimeout
public void setSynchronousTimeout(int synchronousTimeout) -
getConduitSelector
Description copied from interface:Client
Get the ConduitSelector responsible for retreiving the Conduit.- Specified by:
getConduitSelector
in interfaceClient
- Specified by:
getConduitSelector
in interfaceConduitSelectorHolder
- Returns:
- the current ConduitSelector
-
getConduitSelector
-
setConduitSelector
Description copied from interface:Client
Set the ConduitSelector responsible for retreiving the Conduit.- Specified by:
setConduitSelector
in interfaceClient
- Specified by:
setConduitSelector
in interfaceConduitSelectorHolder
- Parameters:
selector
- the ConduitSelector to use
-
close
- Specified by:
close
in interfaceAutoCloseable
- Throws:
Exception
-
setExecutor
Description copied from interface:Client
Sets the executor which is used to process Asynchronous responses. The default is to use the threads provided by the transport. (example: the JMS listener threads)- Specified by:
setExecutor
in interfaceClient
-