SoapHandler Class Reference

The SoapHandler class provides a concrete representation of the SoapDelegate protocol.

Inherits from NSObject*.

Conforms to SoapDelegate.

Instance methods

onload:

Handles the successful response of a SOAP call.

- (void) onload: (id) value

Parameters

value
The object value of the response.

onerror:

Handles any errors that occurred while sending the request.

- (void) onerror: (NSError*) error

Parameters

error
The NSError* containing details about the errors encountered.

Discussion

Typically these are connection level errors such as an invalid URL or inability to connect to the web service.

onfault:

Handles any SOAP faults that are returned from the web service.

- (void) onfault: (SoapFault*) fault

Parameters

fault
The SOAP fault returned by the web service.