Package | Description |
---|---|
org.springframework.ws.client.core |
Core package of the Spring-WS client-side support.
|
org.springframework.ws.client.support |
Classes supporting the org.springframework.ws.client.core package.
|
org.springframework.ws.transport |
Contains the TransportRequest and TransportResponse interfaces.
|
org.springframework.ws.transport.context |
Abstraction for determining the current TransportInputStream and TransportOutputStream.
|
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.support |
Classes supporting the org.springframework.ws.transport package.
|
org.springframework.ws.transport.xmpp |
Package providing support for handling messages via xmpp.
|
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.handleError(WebServiceConnection connection,
WebServiceMessage request)
Handles an error on the given connection.
|
protected Object |
WebServiceTemplate.handleFault(WebServiceConnection connection,
MessageContext messageContext)
Handles an fault in the given response message.
|
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.
|
Modifier and Type | Method and Description |
---|---|
protected WebServiceConnection |
WebServiceAccessor.createConnection(URI uri)
Creates a connection to the given URI, or throws an exception when it cannot be resolved.
|
Modifier and Type | Interface and Description |
---|---|
interface |
EndpointAwareWebServiceConnection
Sub-interface of
WebServiceConnection that is aware of any server-side situations where an endpoint is not
found. |
interface |
FaultAwareWebServiceConnection
Sub-interface of
WebServiceConnection that is aware of any Fault messages received. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractReceiverConnection
Abstract base class for
WebServiceConnection implementations used for receiving requests. |
class |
AbstractSenderConnection
Abstract base class for
WebServiceConnection implementations used for sending requests. |
class |
AbstractWebServiceConnection
Abstract base class for
WebServiceConnection implementations. |
Modifier and Type | Method and Description |
---|---|
WebServiceConnection |
WebServiceMessageSender.createConnection(URI uri)
Create a new
WebServiceConnection to the specified URI. |
Modifier and Type | Method and Description |
---|---|
WebServiceConnection |
DefaultTransportContext.getConnection() |
WebServiceConnection |
TransportContext.getConnection()
Returns the current
WebServiceConnection . |
Constructor and Description |
---|
DefaultTransportContext(WebServiceConnection connection)
Creates a new
DefaultTransportContext that exposes the given connection. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractHttpSenderConnection
Abstract base class for
WebServiceConnection implementations that send request over HTTP. |
class |
ClientHttpRequestConnection
Implementation of the
WebServiceConnection interface that is based on the
Spring 3 ClientHttpRequest and ClientHttpResponse . |
class |
CommonsHttpConnection
Deprecated.
In favor of
HttpComponentsConnection |
class |
HttpComponentsConnection
Implementation of
WebServiceConnection that is based on Apache HttpClient. |
class |
HttpExchangeConnection
Implementation of
WebServiceConnection that is based on the Java 6 HttpServer HttpExchange . |
class |
HttpServletConnection
Implementation of
WebServiceConnection that is based on the Servlet API. |
class |
HttpUrlConnection
Implementation of the
WebServiceConnection interface that uses a HttpURLConnection . |
Modifier and Type | Method and Description |
---|---|
WebServiceConnection |
HttpUrlConnectionMessageSender.createConnection(URI uri) |
WebServiceConnection |
HttpComponentsMessageSender.createConnection(URI uri) |
WebServiceConnection |
CommonsHttpMessageSender.createConnection(URI uri)
Deprecated.
|
WebServiceConnection |
ClientHttpRequestMessageSender.createConnection(URI uri) |
Modifier and Type | Class and Description |
---|---|
class |
JmsReceiverConnection
Implementation of
WebServiceConnection that is used for server-side JMS access. |
class |
JmsSenderConnection
Implementation of
WebServiceConnection that is used for client-side JMS access. |
Modifier and Type | Method and Description |
---|---|
WebServiceConnection |
JmsMessageSender.createConnection(URI uri) |
Modifier and Type | Class and Description |
---|---|
class |
MailReceiverConnection
Implementation of
WebServiceConnection that is used for server-side Mail access. |
class |
MailSenderConnection
Implementation of
WebServiceConnection that is used for client-side Mail access. |
Modifier and Type | Method and Description |
---|---|
WebServiceConnection |
MailMessageSender.createConnection(URI uri) |
Modifier and Type | Method and Description |
---|---|
static void |
TransportUtils.closeConnection(WebServiceConnection connection)
Close the given
WebServiceConnection and ignore any thrown exception. |
protected void |
SimpleWebServiceMessageReceiverObjectSupport.handleConnection(WebServiceConnection connection) |
protected void |
WebServiceMessageReceiverObjectSupport.handleConnection(WebServiceConnection connection,
WebServiceMessageReceiver receiver)
|
protected void |
WebServiceMessageReceiverObjectSupport.handleNoEndpointFoundException(NoEndpointFoundException ex,
WebServiceConnection connection,
WebServiceMessageReceiver receiver)
Template method for handling
NoEndpointFoundException s. |
Modifier and Type | Class and Description |
---|---|
class |
XmppReceiverConnection
Implementation of
WebServiceConnection that is used for server-side XMPP
access. |
class |
XmppSenderConnection
Implementation of
WebServiceConnection that is used for client-side XMPP
access. |
Modifier and Type | Method and Description |
---|---|
WebServiceConnection |
XmppMessageSender.createConnection(URI uri) |
Copyright © 2020 Pivotal Software. All rights reserved.