I am a new iPhone developer and totally new to web-services as well. I had used http://www.sudzc.com/ to develop my obj-c code for my wsdl. I need to know that where exactly i need to handle exceptions in this code? Or the code generated by sudz itself takes care of the exception handling itself?
Share
Look at the example code generated for your web service. They give you the generic layout for the error handlers. Should look something like this:
// Handle the response from webserviceConnection.
(void) webserviceConnectionHandler: (BOOL) value {
// Do something with the BOOL result
NSLog(@”webserviceConnection returned the value: %@”, [NSNumber numberWithBool:value]);
}