|
Spring Web Services Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WebServiceMessage | |
---|---|
org.springframework.ws | Provides the core functionality of the Spring Web Services framework. |
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.mime | Provides MIME functionality for use the Spring Web Services framework. |
org.springframework.ws.pox | Provides the Plain Old XML (POX) functionality of the Spring Web Services framework. |
org.springframework.ws.pox.dom | Contains an implementation of the POX interfaces that is based on DOM. |
org.springframework.ws.server.endpoint | Provides standard endpoint, and EndpointAdapter implementations. |
org.springframework.ws.server.endpoint.interceptor | Provides miscellaneous endpoints EndpointInterceptor implementations. |
org.springframework.ws.soap | Provides the SOAP functionality of the Spring Web Services framework. |
org.springframework.ws.soap.addressing.client | |
org.springframework.ws.soap.axiom | AXis Object Model (AXIOM) support for Spring-WS' soap message infrastructure. |
org.springframework.ws.soap.client.core | Contains core classes for SOAP-specific client-side Spring-WS support. |
org.springframework.ws.soap.saaj | SOAP with Attachments API for Java (SAAJ) support for Spring-WS soap message infrastructure. |
org.springframework.ws.soap.server.endpoint.interceptor | Provides miscellaneous endpoints EndpointInterceptor implementations for SOAP purposes. |
org.springframework.ws.stream | |
org.springframework.ws.support | Provides general helper classes for Spring Web Services. |
org.springframework.ws.test.client | Provides a testing framework for client-side Web service testing. |
org.springframework.ws.test.server | Provides a testing framework for server-side Web service testing. |
org.springframework.ws.test.support.creator | Provides the generic WebServiceMessageCreator
interface, and implementations. |
org.springframework.ws.test.support.matcher | Provides the generic WebServiceMessageMatcher
interface, and implementations. |
org.springframework.ws.transport | Contains the TransportRequest and TransportResponse interfaces. |
org.springframework.ws.transport.http | Package providing support for handling messages via HTTP. |
org.springframework.ws.transport.jms | Package providing support for handling messages via JMS. |
org.springframework.ws.transport.mail | Package providing support for handling messages via email. |
org.springframework.ws.transport.xmpp | Package providing support for handling messages via xmpp. |
Uses of WebServiceMessage in org.springframework.ws |
---|
Subinterfaces of WebServiceMessage in org.springframework.ws | |
---|---|
interface |
FaultAwareWebServiceMessage
Sub-interface of WebServiceMessage that can contain special Fault messages. |
Methods in org.springframework.ws that return WebServiceMessage | |
---|---|
WebServiceMessage |
WebServiceMessageFactory.createWebServiceMessage()
Creates a new, empty WebServiceMessage . |
WebServiceMessage |
WebServiceMessageFactory.createWebServiceMessage(InputStream inputStream)
Reads a WebServiceMessage from the given input stream. |
Constructors in org.springframework.ws with parameters of type WebServiceMessage | |
---|---|
NoEndpointFoundException(WebServiceMessage request)
|
Uses of WebServiceMessage in org.springframework.ws.client.core |
---|
Methods in org.springframework.ws.client.core with parameters of type WebServiceMessage | |
---|---|
void |
WebServiceMessageCallback.doWithMessage(WebServiceMessage message)
Execute any number of operations on the supplied message . |
T |
WebServiceMessageExtractor.extractData(WebServiceMessage message)
Process the data in the given WebServiceMessage , creating a corresponding result object. |
protected Object |
WebServiceTemplate.handleError(WebServiceConnection connection,
WebServiceMessage request)
Handles an error on the given connection. |
protected boolean |
WebServiceTemplate.hasError(WebServiceConnection connection,
WebServiceMessage request)
Determines whether the given connection or message context has an error. |
protected boolean |
WebServiceTemplate.hasFault(WebServiceConnection connection,
WebServiceMessage response)
Determines whether the given connection or message has a fault. |
void |
SimpleFaultMessageResolver.resolveFault(WebServiceMessage message)
Throws a new WebServiceFaultException . |
void |
FaultMessageResolver.resolveFault(WebServiceMessage message)
Try to resolve the given fault message that got received. |
Uses of WebServiceMessage in org.springframework.ws.client.support.interceptor |
---|
Methods in org.springframework.ws.client.support.interceptor with parameters of type WebServiceMessage | |
---|---|
protected Source |
PayloadValidatingInterceptor.getValidationRequestSource(WebServiceMessage request)
Returns the part of the request message that is to be validated. |
protected abstract Source |
AbstractValidatingInterceptor.getValidationRequestSource(WebServiceMessage request)
Abstract template method that returns the part of the request message that is to be validated. |
protected Source |
PayloadValidatingInterceptor.getValidationResponseSource(WebServiceMessage response)
Returns the part of the response message that is to be validated. |
protected abstract Source |
AbstractValidatingInterceptor.getValidationResponseSource(WebServiceMessage response)
Abstract template method that returns the part of the response message that is to be validated. |
Uses of WebServiceMessage in org.springframework.ws.context |
---|
Methods in org.springframework.ws.context that return WebServiceMessage | |
---|---|
WebServiceMessage |
MessageContext.getRequest()
Returns the request message. |
WebServiceMessage |
DefaultMessageContext.getRequest()
|
WebServiceMessage |
MessageContext.getResponse()
Returns the response message. |
WebServiceMessage |
DefaultMessageContext.getResponse()
|
Methods in org.springframework.ws.context with parameters of type WebServiceMessage | |
---|---|
void |
MessageContext.setResponse(WebServiceMessage response)
Sets the response message. |
void |
DefaultMessageContext.setResponse(WebServiceMessage response)
|
Constructors in org.springframework.ws.context with parameters of type WebServiceMessage | |
---|---|
DefaultMessageContext(WebServiceMessage request,
WebServiceMessageFactory messageFactory)
Construct a new instance of the DefaultMessageContext with the given request message and message
factory. |
Uses of WebServiceMessage in org.springframework.ws.mime |
---|
Subinterfaces of WebServiceMessage in org.springframework.ws.mime | |
---|---|
interface |
MimeMessage
Represents a Web service message with MIME attachments. |
Classes in org.springframework.ws.mime that implement WebServiceMessage | |
---|---|
class |
AbstractMimeMessage
Abstract implementation of the MimeMessage interface. |
Uses of WebServiceMessage in org.springframework.ws.pox |
---|
Subinterfaces of WebServiceMessage in org.springframework.ws.pox | |
---|---|
interface |
PoxMessage
Defines the contract for Plain Old XML messages. |
Uses of WebServiceMessage in org.springframework.ws.pox.dom |
---|
Classes in org.springframework.ws.pox.dom that implement WebServiceMessage | |
---|---|
class |
DomPoxMessage
Implementation of the PoxMessage interface that is based on a DOM Document. |
Uses of WebServiceMessage in org.springframework.ws.server.endpoint |
---|
Methods in org.springframework.ws.server.endpoint with parameters of type WebServiceMessage | |
---|---|
protected abstract Source |
AbstractLoggingInterceptor.getSource(WebServiceMessage message)
Abstract template method that returns the Source for the given WebServiceMessage . |
Uses of WebServiceMessage in org.springframework.ws.server.endpoint.interceptor |
---|
Methods in org.springframework.ws.server.endpoint.interceptor with parameters of type WebServiceMessage | |
---|---|
protected Source |
PayloadLoggingInterceptor.getSource(WebServiceMessage message)
|
protected abstract Source |
AbstractValidatingInterceptor.getValidationRequestSource(WebServiceMessage request)
Abstract template method that returns the part of the request message that is to be validated. |
protected abstract Source |
AbstractValidatingInterceptor.getValidationResponseSource(WebServiceMessage response)
Abstract template method that returns the part of the response message that is to be validated. |
protected boolean |
DelegatingSmartEndpointInterceptor.shouldIntercept(WebServiceMessage request,
Object endpoint)
Indicates whether this interceptor should intercept the given request message. |
Uses of WebServiceMessage in org.springframework.ws.soap |
---|
Subinterfaces of WebServiceMessage in org.springframework.ws.soap | |
---|---|
interface |
SoapMessage
Represents an abstraction for SOAP messages, providing access to a SOAP Envelope. |
Classes in org.springframework.ws.soap that implement WebServiceMessage | |
---|---|
class |
AbstractSoapMessage
Abstract implementation of the SoapMessage interface. |
Uses of WebServiceMessage in org.springframework.ws.soap.addressing.client |
---|
Methods in org.springframework.ws.soap.addressing.client with parameters of type WebServiceMessage | |
---|---|
void |
ActionCallback.doWithMessage(WebServiceMessage message)
|
Uses of WebServiceMessage in org.springframework.ws.soap.axiom |
---|
Classes in org.springframework.ws.soap.axiom that implement WebServiceMessage | |
---|---|
class |
AxiomSoapMessage
AXIOM-specific implementation of the SoapMessage interface. |
Uses of WebServiceMessage in org.springframework.ws.soap.client.core |
---|
Methods in org.springframework.ws.soap.client.core with parameters of type WebServiceMessage | |
---|---|
void |
SoapActionCallback.doWithMessage(WebServiceMessage message)
|
void |
SoapFaultMessageResolver.resolveFault(WebServiceMessage message)
|
Uses of WebServiceMessage in org.springframework.ws.soap.saaj |
---|
Classes in org.springframework.ws.soap.saaj that implement WebServiceMessage | |
---|---|
class |
SaajSoapMessage
SAAJ-specific implementation of the SoapMessage interface. |
Uses of WebServiceMessage in org.springframework.ws.soap.server.endpoint.interceptor |
---|
Methods in org.springframework.ws.soap.server.endpoint.interceptor with parameters of type WebServiceMessage | |
---|---|
protected Source |
SoapEnvelopeLoggingInterceptor.getSource(WebServiceMessage message)
|
protected Source |
PayloadValidatingInterceptor.getValidationRequestSource(WebServiceMessage request)
Returns the payload source of the given message. |
protected Source |
PayloadValidatingInterceptor.getValidationResponseSource(WebServiceMessage response)
Returns the payload source of the given message. |
protected boolean |
SoapActionSmartEndpointInterceptor.shouldIntercept(WebServiceMessage request,
Object endpoint)
|
protected boolean |
PayloadRootSmartSoapEndpointInterceptor.shouldIntercept(WebServiceMessage request,
Object endpoint)
|
Uses of WebServiceMessage in org.springframework.ws.stream |
---|
Subinterfaces of WebServiceMessage in org.springframework.ws.stream | |
---|---|
interface |
StreamingWebServiceMessage
Sub-interface of WebServiceMessage that allows for setting a streaming payload. |
Uses of WebServiceMessage in org.springframework.ws.support |
---|
Methods in org.springframework.ws.support with parameters of type WebServiceMessage | |
---|---|
static void |
MarshallingUtils.marshal(org.springframework.oxm.Marshaller marshaller,
Object graph,
WebServiceMessage message)
Marshals the given object to the payload of the given message using the provided Marshaller . |
static Object |
MarshallingUtils.unmarshal(org.springframework.oxm.Unmarshaller unmarshaller,
WebServiceMessage message)
Unmarshals the payload of the given message using the provided Unmarshaller . |
Uses of WebServiceMessage in org.springframework.ws.test.client |
---|
Methods in org.springframework.ws.test.client that return WebServiceMessage | |
---|---|
WebServiceMessage |
ResponseCreator.createResponse(URI uri,
WebServiceMessage request,
WebServiceMessageFactory messageFactory)
Create a response for the given the request and URI. |
Methods in org.springframework.ws.test.client with parameters of type WebServiceMessage | |
---|---|
WebServiceMessage |
ResponseCreator.createResponse(URI uri,
WebServiceMessage request,
WebServiceMessageFactory messageFactory)
Create a response for the given the request and URI. |
void |
RequestMatcher.match(URI uri,
WebServiceMessage request)
Matches the given request message against the expectations. |
Uses of WebServiceMessage in org.springframework.ws.test.server |
---|
Methods in org.springframework.ws.test.server that return WebServiceMessage | |
---|---|
WebServiceMessage |
RequestCreator.createRequest(WebServiceMessageFactory messageFactory)
Create a request. |
Methods in org.springframework.ws.test.server with parameters of type WebServiceMessage | |
---|---|
void |
ResponseMatcher.match(WebServiceMessage request,
WebServiceMessage response)
Matches the given response message against the expectations. |
Uses of WebServiceMessage in org.springframework.ws.test.support.creator |
---|
Methods in org.springframework.ws.test.support.creator that return WebServiceMessage | |
---|---|
WebServiceMessage |
WebServiceMessageCreator.createMessage(WebServiceMessageFactory messageFactory)
Create a message. |
WebServiceMessage |
AbstractMessageCreator.createMessage(WebServiceMessageFactory messageFactory)
|
Methods in org.springframework.ws.test.support.creator with parameters of type WebServiceMessage | |
---|---|
protected void |
SoapEnvelopeMessageCreator.doWithMessage(WebServiceMessage message)
|
protected void |
PayloadMessageCreator.doWithMessage(WebServiceMessage message)
|
protected abstract void |
AbstractMessageCreator.doWithMessage(WebServiceMessage message)
Abstract template method, invoked by AbstractMessageCreator.createMessage(WebServiceMessageFactory) after a message has been
created. |
Uses of WebServiceMessage in org.springframework.ws.test.support.matcher |
---|
Methods in org.springframework.ws.test.support.matcher with parameters of type WebServiceMessage | |
---|---|
protected org.custommonkey.xmlunit.Diff |
PayloadDiffMatcher.createDiff(WebServiceMessage message)
|
protected abstract org.custommonkey.xmlunit.Diff |
DiffMatcher.createDiff(WebServiceMessage message)
Creates a Diff for the given message. |
void |
WebServiceMessageMatcher.match(WebServiceMessage message)
Matches the given message against the expectations. |
void |
SchemaValidatingMatcher.match(WebServiceMessage message)
|
void |
DiffMatcher.match(WebServiceMessage message)
|
void |
AbstractSoapMessageMatcher.match(WebServiceMessage message)
|
Uses of WebServiceMessage in org.springframework.ws.transport |
---|
Methods in org.springframework.ws.transport that return WebServiceMessage | |
---|---|
WebServiceMessage |
WebServiceConnection.receive(WebServiceMessageFactory messageFactory)
Receives a message using the given WebServiceMessageFactory . |
WebServiceMessage |
AbstractWebServiceConnection.receive(WebServiceMessageFactory messageFactory)
|
Methods in org.springframework.ws.transport with parameters of type WebServiceMessage | |
---|---|
protected void |
AbstractWebServiceConnection.onReceiveAfterRead(WebServiceMessage message)
Called when the given message has been read from the TransportInputStream . |
protected void |
AbstractWebServiceConnection.onSendAfterWrite(WebServiceMessage message)
Called after the given message has been written to the TransportOutputStream . |
protected void |
AbstractWebServiceConnection.onSendBeforeWrite(WebServiceMessage message)
Called before the given message has been written to the TransportOutputStream . |
void |
WebServiceConnection.send(WebServiceMessage message)
Sends the given message using this connection. |
void |
AbstractWebServiceConnection.send(WebServiceMessage message)
|
Uses of WebServiceMessage in org.springframework.ws.transport.http |
---|
Methods in org.springframework.ws.transport.http with parameters of type WebServiceMessage | |
---|---|
protected void |
HttpExchangeConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
HttpUrlConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
HttpServletConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
HttpComponentsConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
CommonsHttpConnection.onSendAfterWrite(WebServiceMessage message)
Deprecated. |
protected void |
HttpComponentsConnection.onSendBeforeWrite(WebServiceMessage message)
|
protected void |
CommonsHttpConnection.onSendBeforeWrite(WebServiceMessage message)
Deprecated. |
Uses of WebServiceMessage in org.springframework.ws.transport.jms |
---|
Methods in org.springframework.ws.transport.jms with parameters of type WebServiceMessage | |
---|---|
protected void |
JmsSenderConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
JmsReceiverConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
JmsReceiverConnection.onSendBeforeWrite(WebServiceMessage message)
|
Uses of WebServiceMessage in org.springframework.ws.transport.mail |
---|
Methods in org.springframework.ws.transport.mail with parameters of type WebServiceMessage | |
---|---|
protected void |
MailSenderConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
MailReceiverConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
MailSenderConnection.onSendBeforeWrite(WebServiceMessage message)
|
protected void |
MailReceiverConnection.onSendBeforeWrite(WebServiceMessage message)
|
Uses of WebServiceMessage in org.springframework.ws.transport.xmpp |
---|
Methods in org.springframework.ws.transport.xmpp with parameters of type WebServiceMessage | |
---|---|
protected void |
XmppSenderConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
XmppReceiverConnection.onSendAfterWrite(WebServiceMessage message)
|
protected void |
XmppReceiverConnection.onSendBeforeWrite(WebServiceMessage message)
|
|
Spring Web Services Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |