Package | Description |
---|---|
org.springframework.ws.client.core |
Core package of the Spring-WS client-side support.
|
org.springframework.ws.client.support.interceptor |
Provides the
ClientInterceptor interface, and validating interceptors. |
org.springframework.ws.context |
Contains the
MessageContext interface and implementations thereof. |
org.springframework.ws.server |
Contains classes for server-side Spring-WS support.
|
org.springframework.ws.server.endpoint |
Provides standard endpoint, and
EndpointAdapter implementations. |
org.springframework.ws.server.endpoint.adapter |
Provides miscellaneous
EndpointAdapter implementations. |
org.springframework.ws.server.endpoint.adapter.method |
Provides the
MethodArgumentResolver and MethodReturnValueHandler abstractions, and various
implementations thereof. |
org.springframework.ws.server.endpoint.adapter.method.jaxb |
Provides JAXB2-based implementations of the
MethodArgumentResolver and
MethodReturnValueHandler interfaces. |
org.springframework.ws.server.endpoint.interceptor |
Provides miscellaneous endpoints
EndpointInterceptor implementations. |
org.springframework.ws.server.endpoint.mapping |
Provides miscellaneous endpoints
EndpointMapping implementations. |
org.springframework.ws.server.endpoint.mapping.jaxb |
Provides JAXB2-based
EndpointMapping implementations. |
org.springframework.ws.soap.addressing.server |
Contains servers-side WS-Addressing support, in the form of
EndpointMappings . |
org.springframework.ws.soap.security |
Provides WS-Security implementation classes.
|
org.springframework.ws.soap.security.wss4j |
Contains classes for using the Apache WSS4J WS-Security implementation within
Spring-WS (deprecated as of Spring WS 2.3).
|
org.springframework.ws.soap.security.wss4j2 |
Contains classes for using the Apache WSS4J 2.0 WS-Security implementation within
Spring-WS.
|
org.springframework.ws.soap.security.xwss |
Contains classes for using the XML and WebServices Security WS-Security
implementation within Spring-WS.
|
org.springframework.ws.soap.server |
Contains classes for SOAP-specific server-side Spring-WS support.
|
org.springframework.ws.soap.server.endpoint |
Provides
EndpointAdapter , EndpointMapping , and EndpointExceptionResolver
implementations for SOAP. |
org.springframework.ws.soap.server.endpoint.adapter.method | |
org.springframework.ws.soap.server.endpoint.interceptor |
Provides miscellaneous endpoints
EndpointInterceptor implementations for SOAP purposes. |
org.springframework.ws.soap.server.endpoint.mapping |
Provides miscellaneous endpoints
EndpointMapping implementations for SOAP purposes. |
org.springframework.ws.transport |
Contains the TransportRequest and TransportResponse interfaces.
|
Modifier and Type | Method and Description |
---|---|
protected <T> T |
WebServiceTemplate.doSendAndReceive(MessageContext messageContext,
WebServiceConnection connection,
WebServiceMessageCallback requestCallback,
WebServiceMessageExtractor<T> responseExtractor)
Sends and receives a
MessageContext . |
protected Object |
WebServiceTemplate.handleFault(WebServiceConnection connection,
MessageContext messageContext)
Handles an fault in the given response message.
|
Modifier and Type | Method and Description |
---|---|
void |
ClientInterceptorAdapter.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 |
AbstractValidatingInterceptor.afterCompletion(MessageContext messageContext,
Exception ex)
Does nothing by default.
|
boolean |
ClientInterceptorAdapter.handleFault(MessageContext messageContext) |
boolean |
ClientInterceptor.handleFault(MessageContext messageContext)
Processes the incoming response fault.
|
boolean |
AbstractValidatingInterceptor.handleFault(MessageContext messageContext)
Does nothing by default.
|
boolean |
ClientInterceptorAdapter.handleRequest(MessageContext messageContext) |
boolean |
ClientInterceptor.handleRequest(MessageContext messageContext)
Processes the outgoing request message.
|
boolean |
AbstractValidatingInterceptor.handleRequest(MessageContext messageContext)
Validates the request message in the given message context.
|
protected boolean |
AbstractValidatingInterceptor.handleRequestValidationErrors(MessageContext messageContext,
SAXParseException[] errors)
Template method that is called when the request message contains validation errors.
|
boolean |
ClientInterceptorAdapter.handleResponse(MessageContext messageContext) |
boolean |
ClientInterceptor.handleResponse(MessageContext messageContext)
Processes the incoming response message.
|
boolean |
AbstractValidatingInterceptor.handleResponse(MessageContext messageContext)
Validates the response message in the given message context.
|
protected boolean |
AbstractValidatingInterceptor.handleResponseValidationErrors(MessageContext messageContext,
SAXParseException[] errors)
Template method that is called when the response message contains validation errors.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractMessageContext
Abstract base class for
MessageContext instances. |
class |
DefaultMessageContext
Default implementation of
MessageContext . |
Modifier and Type | Method and Description |
---|---|
void |
EndpointInterceptor.afterCompletion(MessageContext messageContext,
Object endpoint,
Exception ex)
Callback after completion of request and response (fault) processing.
|
protected void |
MessageDispatcher.dispatch(MessageContext messageContext)
Dispatches the request in the given MessageContext according to the configuration.
|
EndpointInvocationChain |
EndpointMapping.getEndpoint(MessageContext messageContext)
Returns an endpoint and any interceptors for this message context.
|
protected EndpointInvocationChain |
MessageDispatcher.getEndpoint(MessageContext messageContext)
Returns the endpoint for this request.
|
boolean |
EndpointInterceptor.handleFault(MessageContext messageContext,
Object endpoint)
Processes the outgoing response fault.
|
protected boolean |
MessageDispatcher.handleRequest(EndpointInvocationChain mappedEndpoint,
MessageContext messageContext)
Callback for pre-processing of given invocation chain and message context.
|
boolean |
EndpointInterceptor.handleRequest(MessageContext messageContext,
Object endpoint)
Processes the incoming request message.
|
boolean |
EndpointInterceptor.handleResponse(MessageContext messageContext,
Object endpoint)
Processes the outgoing response message.
|
void |
EndpointAdapter.invoke(MessageContext messageContext,
Object endpoint)
Use the given
endpoint to handle the request. |
protected void |
MessageDispatcher.processEndpointException(MessageContext messageContext,
Object endpoint,
Exception ex)
Determine an error
SOAPMessage response via the registered EndpointExceptionResolvers . |
void |
MessageDispatcher.receive(MessageContext messageContext) |
boolean |
EndpointExceptionResolver.resolveException(MessageContext messageContext,
Object endpoint,
Exception ex)
Try to resolve the given exception that got thrown during on endpoint execution.
|
boolean |
SmartEndpointInterceptor.shouldIntercept(MessageContext messageContext,
Object endpoint)
Indicates whether this interceptor should intercept the given message context.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractLoggingInterceptor.afterCompletion(MessageContext messageContext,
Object endpoint,
Exception ex)
Does nothing by default
|
protected String |
AbstractEndpointExceptionResolver.buildLogMessage(Exception ex,
MessageContext messageContext)
Build a log message for the given exception, occured during processing the given message context.
|
boolean |
AbstractLoggingInterceptor.handleFault(MessageContext messageContext,
Object endpoint)
Does nothing by default.
|
boolean |
AbstractLoggingInterceptor.handleRequest(MessageContext messageContext,
Object endpoint)
Logs the request message payload.
|
boolean |
AbstractLoggingInterceptor.handleResponse(MessageContext messageContext,
Object endpoint)
Logs the response message payload.
|
void |
AbstractMarshallingPayloadEndpoint.invoke(MessageContext messageContext)
Deprecated.
|
void |
MessageEndpoint.invoke(MessageContext messageContext)
Invokes an operation.
|
void |
AbstractStaxEventPayloadEndpoint.invoke(MessageContext messageContext)
Deprecated.
|
void |
AbstractStaxStreamPayloadEndpoint.invoke(MessageContext messageContext)
Deprecated.
|
protected void |
AbstractEndpointExceptionResolver.logException(Exception ex,
MessageContext messageContext)
Log the given exception at warn level, provided that warn logging has been activated through the
"warnLogCategory" property. |
protected void |
AbstractMarshallingPayloadEndpoint.onMarshalResponse(MessageContext messageContext,
Object requestObject,
Object responseObject)
Deprecated.
Callback for post-processing in terms of marshalling.
|
protected boolean |
AbstractMarshallingPayloadEndpoint.onUnmarshalRequest(MessageContext messageContext,
Object requestObject)
Deprecated.
Callback for post-processing in terms of unmarshalling.
|
protected boolean |
AbstractValidatingMarshallingPayloadEndpoint.onUnmarshalRequest(MessageContext messageContext,
Object requestObject)
Deprecated.
|
protected abstract boolean |
AbstractValidatingMarshallingPayloadEndpoint.onValidationErrors(MessageContext messageContext,
Object requestObject,
org.springframework.validation.Errors errors)
Deprecated.
Callback for post-processing validation errors.
|
boolean |
AbstractEndpointExceptionResolver.resolveException(MessageContext messageContext,
Object endpoint,
Exception ex)
Default implementation that checks whether the given
endpoint is in the set of mapped endpoints . |
protected abstract boolean |
AbstractEndpointExceptionResolver.resolveExceptionInternal(MessageContext messageContext,
Object endpoint,
Exception ex)
Template method for resolving exceptions that is called by
AbstractEndpointExceptionResolver.resolveException(org.springframework.ws.context.MessageContext, java.lang.Object, java.lang.Exception) . |
Modifier and Type | Method and Description |
---|---|
protected Object[] |
DefaultMethodEndpointAdapter.getMethodArguments(MessageContext messageContext,
MethodEndpoint methodEndpoint)
Returns the argument array for the given method endpoint.
|
protected void |
DefaultMethodEndpointAdapter.handleMethodReturnValue(MessageContext messageContext,
Object returnValue,
MethodEndpoint methodEndpoint)
Handle the return value for the given method endpoint.
|
void |
MessageEndpointAdapter.invoke(MessageContext messageContext,
Object endpoint) |
void |
AbstractMethodEndpointAdapter.invoke(MessageContext messageContext,
Object endpoint)
|
void |
PayloadEndpointAdapter.invoke(MessageContext messageContext,
Object endpoint) |
protected void |
DefaultMethodEndpointAdapter.invokeInternal(MessageContext messageContext,
MethodEndpoint methodEndpoint) |
protected void |
MessageMethodEndpointAdapter.invokeInternal(MessageContext messageContext,
MethodEndpoint methodEndpoint)
Deprecated.
|
protected abstract void |
AbstractMethodEndpointAdapter.invokeInternal(MessageContext messageContext,
MethodEndpoint methodEndpoint)
Use the given method endpoint to handle the request.
|
protected void |
PayloadMethodEndpointAdapter.invokeInternal(MessageContext messageContext,
MethodEndpoint methodEndpoint)
Deprecated.
|
protected void |
MarshallingMethodEndpointAdapter.invokeInternal(MessageContext messageContext,
MethodEndpoint methodEndpoint)
Deprecated.
|
protected void |
XPathParamAnnotationMethodEndpointAdapter.invokeInternal(MessageContext messageContext,
MethodEndpoint methodEndpoint)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
MessageContext |
MessageContextMethodArgumentResolver.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
Modifier and Type | Method and Description |
---|---|
void |
MarshallingPayloadMethodProcessor.handleReturnValue(MessageContext messageContext,
org.springframework.core.MethodParameter returnType,
Object returnValue) |
void |
AbstractPayloadSourceMethodProcessor.handleReturnValue(MessageContext messageContext,
org.springframework.core.MethodParameter returnType,
Object returnValue) |
void |
MethodReturnValueHandler.handleReturnValue(MessageContext messageContext,
org.springframework.core.MethodParameter returnType,
Object returnValue)
Handles the given return value.
|
Object |
XPathParamMethodArgumentResolver.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
MessageContext |
MessageContextMethodArgumentResolver.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
Object |
MarshallingPayloadMethodProcessor.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
Object |
AbstractPayloadSourceMethodProcessor.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
Object |
StaxPayloadMethodArgumentResolver.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
Object |
MethodArgumentResolver.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter)
Resolves the given parameter into a method argument.
|
Modifier and Type | Method and Description |
---|---|
void |
AbstractJaxb2PayloadMethodProcessor.handleReturnValue(MessageContext messageContext,
org.springframework.core.MethodParameter returnType,
Object returnValue) |
protected abstract void |
AbstractJaxb2PayloadMethodProcessor.handleReturnValueInternal(MessageContext messageContext,
org.springframework.core.MethodParameter returnType,
Object returnValue) |
protected void |
XmlRootElementPayloadMethodProcessor.handleReturnValueInternal(MessageContext messageContext,
org.springframework.core.MethodParameter returnType,
Object returnValue) |
protected void |
JaxbElementPayloadMethodProcessor.handleReturnValueInternal(MessageContext messageContext,
org.springframework.core.MethodParameter returnType,
Object returnValue) |
protected void |
AbstractJaxb2PayloadMethodProcessor.marshalToResponsePayload(MessageContext messageContext,
Class<?> clazz,
Object jaxbElement)
Marshals the given
jaxbElement to the response payload of the given message context. |
Object |
XmlRootElementPayloadMethodProcessor.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
JAXBElement<?> |
JaxbElementPayloadMethodProcessor.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
protected <T> JAXBElement<T> |
AbstractJaxb2PayloadMethodProcessor.unmarshalElementFromRequestPayload(MessageContext messageContext,
Class<T> clazz)
Unmarshals the request payload of the given message context as
JAXBElement . |
protected Object |
AbstractJaxb2PayloadMethodProcessor.unmarshalFromRequestPayload(MessageContext messageContext,
Class<?> clazz)
Unmarshals the request payload of the given message context.
|
Modifier and Type | Method and Description |
---|---|
void |
PayloadTransformingInterceptor.afterCompletion(MessageContext messageContext,
Object endpoint,
Exception ex)
Does nothing by default.
|
void |
EndpointInterceptorAdapter.afterCompletion(MessageContext messageContext,
Object endpoint,
Exception ex)
Does nothing by default.
|
void |
DelegatingSmartEndpointInterceptor.afterCompletion(MessageContext messageContext,
Object endpoint,
Exception ex) |
void |
AbstractValidatingInterceptor.afterCompletion(MessageContext messageContext,
Object endpoint,
Exception ex)
Does nothing by default.
|
boolean |
PayloadTransformingInterceptor.handleFault(MessageContext messageContext,
Object endpoint)
Does nothing by default.
|
boolean |
EndpointInterceptorAdapter.handleFault(MessageContext messageContext,
Object endpoint)
Returns
true . |
boolean |
DelegatingSmartEndpointInterceptor.handleFault(MessageContext messageContext,
Object endpoint) |
boolean |
AbstractValidatingInterceptor.handleFault(MessageContext messageContext,
Object endpoint)
Does nothing by default.
|
boolean |
PayloadTransformingInterceptor.handleRequest(MessageContext messageContext,
Object endpoint)
Transforms the request message in the given message context using a provided stylesheet.
|
boolean |
EndpointInterceptorAdapter.handleRequest(MessageContext messageContext,
Object endpoint)
Returns
true . |
boolean |
DelegatingSmartEndpointInterceptor.handleRequest(MessageContext messageContext,
Object endpoint) |
boolean |
AbstractValidatingInterceptor.handleRequest(MessageContext messageContext,
Object endpoint)
Validates the request message in the given message context.
|
protected boolean |
AbstractValidatingInterceptor.handleRequestValidationErrors(MessageContext messageContext,
SAXParseException[] errors)
Template method that is called when the request message contains validation errors.
|
boolean |
PayloadTransformingInterceptor.handleResponse(MessageContext messageContext,
Object endpoint)
Transforms the response message in the given message context using a stylesheet.
|
boolean |
EndpointInterceptorAdapter.handleResponse(MessageContext messageContext,
Object endpoint)
Returns
true . |
boolean |
DelegatingSmartEndpointInterceptor.handleResponse(MessageContext messageContext,
Object endpoint) |
boolean |
AbstractValidatingInterceptor.handleResponse(MessageContext messageContext,
Object endpoint)
Validates the response message in the given message context.
|
protected boolean |
AbstractValidatingInterceptor.handleResponseValidationErrors(MessageContext messageContext,
SAXParseException[] errors)
Template method that is called when the response message contains validation errors.
|
boolean |
DelegatingSmartEndpointInterceptor.shouldIntercept(MessageContext messageContext,
Object endpoint)
Indicates whether this interceptor should intercept the given message context.
|
Modifier and Type | Method and Description |
---|---|
protected EndpointInvocationChain |
AbstractEndpointMapping.createEndpointInvocationChain(MessageContext messageContext,
Object endpoint,
EndpointInterceptor[] interceptors)
Creates a new
EndpointInvocationChain based on the given message context, endpoint, and
interceptors. |
EndpointInvocationChain |
AbstractEndpointMapping.getEndpoint(MessageContext messageContext)
Look up an endpoint for the given message context, falling back to the default endpoint if no specific one is
found.
|
protected Object |
AbstractMapBasedEndpointMapping.getEndpointInternal(MessageContext messageContext)
Lookup an endpoint for the given message.
|
protected Object |
AbstractMethodEndpointMapping.getEndpointInternal(MessageContext messageContext)
Lookup an endpoint for the given message.
|
protected abstract Object |
AbstractEndpointMapping.getEndpointInternal(MessageContext messageContext)
Lookup an endpoint for the given request, returning
null if no specific one is found. |
protected QName |
PayloadRootAnnotationMethodEndpointMapping.getLookupKeyForMessage(MessageContext messageContext) |
protected String |
AbstractQNameEndpointMapping.getLookupKeyForMessage(MessageContext messageContext) |
protected abstract String |
AbstractMapBasedEndpointMapping.getLookupKeyForMessage(MessageContext messageContext)
Returns the endpoint key for the given message context.
|
protected String |
XPathPayloadEndpointMapping.getLookupKeyForMessage(MessageContext messageContext) |
protected String |
SimpleMethodEndpointMapping.getLookupKeyForMessage(MessageContext messageContext)
Returns the local part of the payload root element of the request.
|
protected String |
UriEndpointMapping.getLookupKeyForMessage(MessageContext messageContext) |
protected abstract T |
AbstractMethodEndpointMapping.getLookupKeyForMessage(MessageContext messageContext)
Returns the endpoint keys for the given message context.
|
protected QName |
PayloadRootQNameEndpointMapping.resolveQName(MessageContext messageContext) |
protected abstract QName |
AbstractQNameEndpointMapping.resolveQName(MessageContext messageContext)
Template method that resolves the qualified names from the given SOAP message.
|
Modifier and Type | Method and Description |
---|---|
protected QName |
XmlRootElementEndpointMapping.getLookupKeyForMessage(MessageContext messageContext) |
Modifier and Type | Method and Description |
---|---|
EndpointInvocationChain |
AbstractAddressingEndpointMapping.getEndpoint(MessageContext messageContext) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractWsSecurityInterceptor.afterCompletion(MessageContext messageContext,
Exception ex) |
void |
AbstractWsSecurityInterceptor.afterCompletion(MessageContext messageContext,
Object endpoint,
Exception ex) |
boolean |
AbstractWsSecurityInterceptor.handleFault(MessageContext messageContext)
Returns
true , i.e. |
boolean |
AbstractWsSecurityInterceptor.handleFault(MessageContext messageContext,
Object endpoint)
Returns
true , i.e. |
protected boolean |
AbstractWsSecurityInterceptor.handleFaultException(WsSecurityFaultException ex,
MessageContext messageContext)
Handles a fault exception.Default implementation logs the given exception, and creates a SOAP Fault with the
properties of the given exception, and returns
false . |
boolean |
AbstractWsSecurityInterceptor.handleRequest(MessageContext messageContext)
Secures a client-side outgoing request.
|
boolean |
AbstractWsSecurityInterceptor.handleRequest(MessageContext messageContext,
Object endpoint)
Validates a server-side incoming request.
|
boolean |
AbstractWsSecurityInterceptor.handleResponse(MessageContext messageContext)
Validates a client-side incoming response.
|
boolean |
AbstractWsSecurityInterceptor.handleResponse(MessageContext messageContext,
Object endpoint)
Secures a server-side outgoing response.
|
protected boolean |
AbstractWsSecurityInterceptor.handleSecurementException(WsSecuritySecurementException ex,
MessageContext messageContext)
Handles an securement exception.
|
protected boolean |
AbstractWsSecurityInterceptor.handleValidationException(WsSecurityValidationException ex,
MessageContext messageContext)
Handles an invalid SOAP message.
|
protected abstract void |
AbstractWsSecurityInterceptor.secureMessage(SoapMessage soapMessage,
MessageContext messageContext)
Abstract template method.
|
protected abstract void |
AbstractWsSecurityInterceptor.validateMessage(SoapMessage soapMessage,
MessageContext messageContext)
Abstract template method.
|
Modifier and Type | Method and Description |
---|---|
protected org.apache.ws.security.handler.RequestData |
Wss4jSecurityInterceptor.initializeRequestData(MessageContext messageContext)
Deprecated.
Creates and initializes a request data for the given message context.
|
protected void |
Wss4jSecurityInterceptor.secureMessage(SoapMessage soapMessage,
MessageContext messageContext)
Deprecated.
|
protected void |
Wss4jSecurityInterceptor.validateMessage(SoapMessage soapMessage,
MessageContext messageContext)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
protected org.apache.wss4j.dom.handler.RequestData |
Wss4jSecurityInterceptor.initializeRequestData(MessageContext messageContext)
Creates and initializes a request data for the given message context.
|
protected org.apache.wss4j.dom.handler.RequestData |
Wss4jSecurityInterceptor.initializeValidationRequestData(MessageContext messageContext)
Creates and initializes a request data for the given message context.
|
protected void |
Wss4jSecurityInterceptor.secureMessage(SoapMessage soapMessage,
MessageContext messageContext) |
protected void |
Wss4jSecurityInterceptor.validateMessage(SoapMessage soapMessage,
MessageContext messageContext) |
Modifier and Type | Method and Description |
---|---|
protected void |
XwsSecurityInterceptor.secureMessage(SoapMessage soapMessage,
MessageContext messageContext)
Secures the given SoapMessage message in accordance with the defined security policy.
|
protected void |
XwsSecurityInterceptor.validateMessage(SoapMessage soapMessage,
MessageContext messageContext)
Validates the given SoapMessage message in accordance with the defined security policy.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
SoapMessageDispatcher.handleRequest(EndpointInvocationChain mappedEndpoint,
MessageContext messageContext)
Process the headers targeted at the actor or role fullfilled by the endpoint.
|
Modifier and Type | Method and Description |
---|---|
protected void |
SimpleSoapExceptionResolver.customizeFault(MessageContext messageContext,
Object endpoint,
Exception ex,
SoapFault fault)
Empty template method to allow subclasses an opportunity to customize the given
SoapFault . |
protected boolean |
AbstractFaultCreatingValidatingMarshallingPayloadEndpoint.onValidationErrors(MessageContext messageContext,
Object requestObject,
org.springframework.validation.Errors errors)
Deprecated.
This implementation logs all errors, returns
false , and creates a client or sender SoapFault , adding a SoapFaultDetail with all errors if the addValidationErrorDetail property is true . |
protected boolean |
AbstractSoapFaultDefinitionExceptionResolver.resolveExceptionInternal(MessageContext messageContext,
Object endpoint,
Exception ex) |
protected boolean |
SimpleSoapExceptionResolver.resolveExceptionInternal(MessageContext messageContext,
Object endpoint,
Exception ex) |
Modifier and Type | Method and Description |
---|---|
Object |
SoapMethodArgumentResolver.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
Object |
SoapHeaderElementMethodArgumentResolver.resolveArgument(MessageContext messageContext,
org.springframework.core.MethodParameter parameter) |
Modifier and Type | Method and Description |
---|---|
boolean |
SoapEnvelopeLoggingInterceptor.handleFault(MessageContext messageContext,
Object endpoint) |
protected boolean |
AbstractFaultCreatingValidatingInterceptor.handleRequestValidationErrors(MessageContext messageContext,
SAXParseException[] errors)
Template method that is called when the request message contains validation errors.
|
Modifier and Type | Method and Description |
---|---|
protected EndpointInvocationChain |
SoapActionAnnotationMethodEndpointMapping.createEndpointInvocationChain(MessageContext messageContext,
Object endpoint,
EndpointInterceptor[] interceptors)
Creates a new
SoapEndpointInvocationChain based on the given endpoint, and the set interceptors, and
actors/roles. |
protected EndpointInvocationChain |
SoapActionEndpointMapping.createEndpointInvocationChain(MessageContext messageContext,
Object endpoint,
EndpointInterceptor[] interceptors)
Creates a new
SoapEndpointInvocationChain based on the given endpoint, and the set interceptors, and
actors/roles. |
EndpointInvocationChain |
DelegatingSoapEndpointMapping.getEndpoint(MessageContext messageContext)
Creates a new
SoapEndpointInvocationChain based on the delegate endpoint, the delegate interceptors,
and set actors/roles. |
protected String |
SoapActionAnnotationMethodEndpointMapping.getLookupKeyForMessage(MessageContext messageContext) |
protected String |
SoapActionEndpointMapping.getLookupKeyForMessage(MessageContext messageContext) |
Modifier and Type | Method and Description |
---|---|
void |
WebServiceMessageReceiver.receive(MessageContext messageContext)
Receives the given message context.
|
Copyright © 2020 Pivotal Software. All rights reserved.