Uses of Class
uk.org.ogsadai.client.toolkit.exception.RequestException

Packages that use RequestException
uk.org.ogsadai.client.toolkit.exception Classes for exposing faults from OGSA-DAI services as client-side exceptions. 
uk.org.ogsadai.client.toolkit.properties This package provides classes which act as client-side representations of the properties of data services and data service resources. 
uk.org.ogsadai.client.toolkit.service This package provides interfaces representing web services and OGSA-DAI data services. 
uk.org.ogsadai.client.toolkit.wsi This package provides classes implementing the service interfaces of uk.org.ogsadai.client.toolkit.service
uk.org.ogsadai.client.toolkit.wsrf This package provides classes implementing the service interfaces of uk.org.ogsadai.client.toolkit.service
 

Uses of RequestException in uk.org.ogsadai.client.toolkit.exception
 

Subclasses of RequestException in uk.org.ogsadai.client.toolkit.exception
 class RequestExecutionException
          The request failed because one or more activities failed.
 class RequestMaximumReachedException
          The maximum number of requests that can be processed and queued has been reached.
 class ResourceIDAlreadyAssignedException
          A client-proposed resource ID is already assigned server-side.
 class UnknownSessionException
          A session in the client's request is unknown to the target data service resource.
 class UnknownSessionStreamException
          A stream in the client's request is unknown to the session to which the request was directed.
 class UnsupportedActivityException
          An activity in the client's request is unknown to the target data service resource.
 

Methods in uk.org.ogsadai.client.toolkit.exception that return RequestException
static RequestException FaultToException.getRequestException(RequestFaultType fault)
          Return a RequestException corresponding to a server-side fault.
private static RequestException FaultToException.getSoloRequestException(ComplexFaultType fault)
          Return a RequestException corresponding to a server-side fault.
 

Uses of RequestException in uk.org.ogsadai.client.toolkit.properties
 

Subclasses of RequestException in uk.org.ogsadai.client.toolkit.properties
 class UnknownPropertyException
          A property name in a client's request is unknown to the target data service resource.
 

Uses of RequestException in uk.org.ogsadai.client.toolkit.service
 

Methods in uk.org.ogsadai.client.toolkit.service that throw RequestException
 Response DataService.perform(Request request)
          Send a request to a data service resource exposed by a service.
 Response DataService.perform(RequestComponent request)
          Send a single activity request to a data service resource exposed by a service.
 Session DataService.createSession()
          Creates a new session for this service.
 void DataService.closeSession(Session session)
          Closes the given session.
 void ConfigurableDataService.deploy(java.lang.String name)
          Instruct a data service to expose a new data service resource of the given name.
 java.lang.Object DataTransport.getFully()
          Gets an entire data set from the output stream of a data service resource in one go.
 java.lang.Object DataTransport.getNBlocks(int numberOfBlocks)
          Gets an number of blocks of data from the output stream of a data service resource in one go.
 java.lang.Object DataTransport.getBlock()
          Gets a single block of data from the output stream of a data service resource.
 void DataTransport.putFully(java.lang.Object data)
          Puts an entire data set onto a data service resource input stream in one go.
 void DataTransport.putBlock(java.lang.Object data)
          Puts one block of data onto a data service resource input stream.
 void DataTransport.putClosingBlock()
          Inform a data service resource that it can close an input stream as all data has been forwarded.
 

Uses of RequestException in uk.org.ogsadai.client.toolkit.wsi
 

Methods in uk.org.ogsadai.client.toolkit.wsi that throw RequestException
 Response WSIDataService.perform(Request request)
           
 Response WSIDataService.perform(RequestComponent component)
           
 java.lang.Object WSIDataService.getFully()
           
 java.lang.Object WSIDataService.getNBlocks(int numberOfBlocks)
           
 java.lang.Object WSIDataService.getBlock()
           
 void WSIDataService.putFully(java.lang.Object data)
           
 void WSIDataService.putBlock(java.lang.Object data)
           
 void WSIDataService.putClosingBlock()
           
 Session WSIDataService.createSession()
           
 void WSIDataService.closeSession(Session session)
           
 void ConfigurableWSIDataService.deploy(java.lang.String name)
           
 java.lang.Object WSIDataTransport.getFully()
           
 java.lang.Object WSIDataTransport.getNBlocks(int numberOfBlocks)
           
 java.lang.Object WSIDataTransport.getBlock()
           
 void WSIDataTransport.putFully(java.lang.Object data)
           
 void WSIDataTransport.putBlock(java.lang.Object data)
           
 void WSIDataTransport.putClosingBlock()
           
 

Uses of RequestException in uk.org.ogsadai.client.toolkit.wsrf
 

Methods in uk.org.ogsadai.client.toolkit.wsrf that throw RequestException
 java.lang.Object WSRFDataTransport.getFully()
           
 java.lang.Object WSRFDataTransport.getNBlocks(int numberOfBlocks)
           
 java.lang.Object WSRFDataTransport.getBlock()
           
 void WSRFDataTransport.putFully(java.lang.Object data)
           
 void WSRFDataTransport.putBlock(java.lang.Object data)
           
 void WSRFDataTransport.putClosingBlock()
           
 Response WSRFDataService.perform(Request request)
           
 Response WSRFDataService.perform(RequestComponent component)
           
 Session WSRFDataService.createSession()
           
 void WSRFDataService.closeSession(Session session)
           
 java.lang.Object WSRFDataService.getFully()
           
 java.lang.Object WSRFDataService.getNBlocks(int numberOfBlocks)
           
 java.lang.Object WSRFDataService.getBlock()
           
 void WSRFDataService.putFully(java.lang.Object data)
           
 void WSRFDataService.putBlock(java.lang.Object data)
           
 void WSRFDataService.putClosingBlock()
           
 void ConfigurableWSRFDataService.deploy(java.lang.String name)