Spring Web Services Framework

Uses of Interface
org.springframework.ws.transport.WebServiceConnection

Packages that use WebServiceConnection
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.support Classes supporting the org.springframework.ws.transport package. 
 

Uses of WebServiceConnection in org.springframework.ws.client.core
 

Methods in org.springframework.ws.client.core with parameters of type WebServiceConnection
protected  Object WebServiceTemplate.handleError(WebServiceConnection connection, WebServiceMessage request)
          Handles an error on the given connection.
protected  Object WebServiceTemplate.handleFault(WebServiceConnection connection, WebServiceMessage request, WebServiceMessage response)
          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.
 

Uses of WebServiceConnection in org.springframework.ws.client.support
 

Methods in org.springframework.ws.client.support that return WebServiceConnection
protected  WebServiceConnection WebServiceAccessor.createConnection(String uri)
          Creates a connection to the given URI, or throws an exception when it cannot be resolved.
 

Uses of WebServiceConnection in org.springframework.ws.transport
 

Subinterfaces of WebServiceConnection in org.springframework.ws.transport
 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.
 

Classes in org.springframework.ws.transport that implement WebServiceConnection
 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.
 

Methods in org.springframework.ws.transport that return WebServiceConnection
 WebServiceConnection WebServiceMessageSender.createConnection(String uri)
          Create a new WebServiceConnection to the specified URI.
 

Uses of WebServiceConnection in org.springframework.ws.transport.context
 

Methods in org.springframework.ws.transport.context that return WebServiceConnection
 WebServiceConnection TransportContext.getConnection()
          Returns the current WebServiceConnection.
 WebServiceConnection DefaultTransportContext.getConnection()
           
 

Constructors in org.springframework.ws.transport.context with parameters of type WebServiceConnection
DefaultTransportContext(WebServiceConnection connection)
          Creates a new DefaultTransportContext that exposes the given connection.
 

Uses of WebServiceConnection in org.springframework.ws.transport.http
 

Classes in org.springframework.ws.transport.http that implement WebServiceConnection
 class AbstractHttpSenderConnection
          Abstract base class for WebServiceConnection implementations that send request over HTTP.
 class CommonsHttpConnection
          Implementation of WebServiceConnection that is based on Jakarta Commons HttpClient.
 class HttpServletConnection
          Implementation of WebServiceConnection that is based on the Servlet API.
 class HttpUrlConnection
          Implementation of the WebServiceConnection interface that uses a HttpURLConnection.
 

Methods in org.springframework.ws.transport.http that return WebServiceConnection
 WebServiceConnection HttpUrlConnectionMessageSender.createConnection(String uri)
           
 WebServiceConnection CommonsHttpMessageSender.createConnection(String uri)
           
 

Uses of WebServiceConnection in org.springframework.ws.transport.support
 

Methods in org.springframework.ws.transport.support with parameters of type WebServiceConnection
protected  void WebServiceMessageReceiverObjectSupport.handleConnection(WebServiceConnection connection, WebServiceMessageReceiver receiver)
          Handles an incoming connection by receving a message from it, passing it to the receiver, and sending the response (if any).
 


Spring Web Services Framework

Copyright � 2005-2008 The Spring Web Services Framework. All Rights Reserved.