Uses of Class
org.springframework.ws.client.WebServiceClientException
Package
Description
Contains classes for client-side Spring-WS support, allowing for Spring-style Web service access.
Core package of the Spring-WS client-side support.
Provides the
DestinationProvider
interface.Provides the
ClientInterceptor
interface, and validating interceptors.Contains classes for SOAP-specific client-side Spring-WS support.
Provides WS-Security implementation classes.
-
Uses of WebServiceClientException in org.springframework.ws.client
Modifier and TypeClassDescriptionclass
Thrown bySimpleFaultMessageResolver
when the response message has a fault.class
Exception thrown whenever an I/O error occurs on the client-side.class
Exception thrown whenever a transformation error occurs on the client-side.class
Exception thrown whenever a transport error occurs on the client-side. -
Uses of WebServiceClientException in org.springframework.ws.client.core
Modifier and TypeMethodDescriptionWebServiceOperations.marshalSendAndReceive
(Object requestPayload) Sends a web service message that contains the given payload, marshalled by the configuredMarshaller
.WebServiceOperations.marshalSendAndReceive
(Object requestPayload, WebServiceMessageCallback requestCallback) Sends a web service message that contains the given payload, marshalled by the configuredMarshaller
.WebServiceOperations.marshalSendAndReceive
(String uri, Object requestPayload) Sends a web service message that contains the given payload, marshalled by the configuredMarshaller
.WebServiceOperations.marshalSendAndReceive
(String uri, Object requestPayload, WebServiceMessageCallback requestCallback) Sends a web service message that contains the given payload, marshalled by the configuredMarshaller
.boolean
WebServiceOperations.sendAndReceive
(String uri, WebServiceMessageCallback requestCallback, WebServiceMessageCallback responseCallback) Sends a web service message that can be manipulated with the given request callback, handling the response with a response callback.<T> T
WebServiceOperations.sendAndReceive
(String uri, WebServiceMessageCallback requestCallback, WebServiceMessageExtractor<T> responseExtractor) Sends a web service message that can be manipulated with the given callback, reading the result with aWebServiceMessageExtractor
.boolean
WebServiceOperations.sendAndReceive
(WebServiceMessageCallback requestCallback, WebServiceMessageCallback responseCallback) Sends a web service message that can be manipulated with the given request callback, handling the response with a response callback.<T> T
WebServiceOperations.sendAndReceive
(WebServiceMessageCallback requestCallback, WebServiceMessageExtractor<T> responseExtractor) Sends a web service message that can be manipulated with the given callback, reading the result with aWebServiceMessageExtractor
.<T> T
WebServiceOperations.sendSourceAndReceive
(String uri, Source requestPayload, SourceExtractor<T> responseExtractor) Sends a web service message that contains the given payload, reading the result with aSourceExtractor
.<T> T
WebServiceOperations.sendSourceAndReceive
(String uri, Source requestPayload, WebServiceMessageCallback requestCallback, SourceExtractor<T> responseExtractor) Sends a web service message that contains the given payload, reading the result with aSourceExtractor
.<T> T
WebServiceOperations.sendSourceAndReceive
(Source requestPayload, SourceExtractor<T> responseExtractor) Sends a web service message that contains the given payload, reading the result with aSourceExtractor
.<T> T
WebServiceOperations.sendSourceAndReceive
(Source requestPayload, WebServiceMessageCallback requestCallback, SourceExtractor<T> responseExtractor) Sends a web service message that contains the given payload, reading the result with aSourceExtractor
.boolean
WebServiceOperations.sendSourceAndReceiveToResult
(String uri, Source requestPayload, Result responseResult) Sends a web service message that contains the given payload.boolean
WebServiceOperations.sendSourceAndReceiveToResult
(String uri, Source requestPayload, WebServiceMessageCallback requestCallback, Result responseResult) Sends a web service message that contains the given payload.boolean
WebServiceOperations.sendSourceAndReceiveToResult
(Source requestPayload, Result responseResult) Sends a web service message that contains the given payload.boolean
WebServiceOperations.sendSourceAndReceiveToResult
(Source requestPayload, WebServiceMessageCallback requestCallback, Result responseResult) Sends a web service message that contains the given payload. -
Uses of WebServiceClientException in org.springframework.ws.client.support.destination
Modifier and TypeClassDescriptionclass
Thrown by aDestinationProvider
when it cannot provide a destination. -
Uses of WebServiceClientException in org.springframework.ws.client.support.interceptor
Modifier and TypeClassDescriptionclass
Exception thrown whenever a validation error occurs on the client-side.Modifier and TypeMethodDescriptionvoid
AbstractValidatingInterceptor.afterCompletion
(MessageContext messageContext, Exception ex) Does nothing by default.void
ClientInterceptor.afterCompletion
(MessageContext messageContext, Exception ex) Callback after completion of request and response (fault) processing.void
ClientInterceptorAdapter.afterCompletion
(MessageContext messageContext, Exception ex) Does nothing by default.boolean
AbstractValidatingInterceptor.handleFault
(MessageContext messageContext) Does nothing by default.boolean
ClientInterceptor.handleFault
(MessageContext messageContext) Processes the incoming response fault.boolean
ClientInterceptorAdapter.handleFault
(MessageContext messageContext) boolean
AbstractValidatingInterceptor.handleRequest
(MessageContext messageContext) Validates the request message in the given message context.boolean
ClientInterceptor.handleRequest
(MessageContext messageContext) Processes the outgoing request message.boolean
ClientInterceptorAdapter.handleRequest
(MessageContext messageContext) boolean
AbstractValidatingInterceptor.handleResponse
(MessageContext messageContext) Validates the response message in the given message context.boolean
ClientInterceptor.handleResponse
(MessageContext messageContext) Processes the incoming response message.boolean
ClientInterceptorAdapter.handleResponse
(MessageContext messageContext) -
Uses of WebServiceClientException in org.springframework.ws.soap.client
Modifier and TypeClassDescriptionclass
Thrown bySoapFaultMessageResolver
when the response message has a fault. -
Uses of WebServiceClientException in org.springframework.ws.soap.security
Modifier and TypeMethodDescriptionvoid
AbstractWsSecurityInterceptor.afterCompletion
(MessageContext messageContext, Exception ex) boolean
AbstractWsSecurityInterceptor.handleFault
(MessageContext messageContext) Returnstrue
, i.e.final boolean
AbstractWsSecurityInterceptor.handleRequest
(MessageContext messageContext) Secures a client-side outgoing request.final boolean
AbstractWsSecurityInterceptor.handleResponse
(MessageContext messageContext) Validates a client-side incoming response.