The SoapHandler class provides a concrete representation of the SoapDelegate protocol.
Inherits from NSObject*.
Conforms to SoapDelegate.
Handles the successful response of a SOAP call.
- (void) onload: (id) value
Handles any errors that occurred while sending the request.
- (void) onerror: (NSError*) error
Typically these are connection level errors such as an invalid URL or inability to connect to the web service.
Handles any SOAP faults that are returned from the web service.
- (void) onfault: (SoapFault*) fault