rest web services in iphone

后端 未结 3 1103
一个人的身影
一个人的身影 2020-12-10 23:13

I have a problem now. I need to pass an transactionID and an user password to a rest service and it is suppose to return me a true/false value (in XML format). However, it i

3条回答
  •  鱼传尺愫
    2020-12-10 23:39

    Consider using NSURLConnection which has a callback for the result and also a callback to get detailed error details. It als doesn't execute on the UI thread (doesn't hang UI during the request).

     NSURL *url = [NSURL URLWithString:@"http://www.mysite.com"];
    
     NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:60.0];
    
     [request setHTTPMethod:@"GET"];
     [[NSURLConnection alloc] initWithRequest:request delegate:self];
    

    Then you can implement the delegate methods to get the error, the data and other details:

    - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
        [responseData appendData:data];
    }
    
    - (void) connectionDidFinishLoading:(NSURLConnection *)connection {
        [connection release];
    
        NSString* responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
        NSLog(@"result: %@", responseString);
    
        [responseString release];
    }
    
    - (void) connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
          NSLog(@"error - read error object for details");
    }
    

提交回复
热议问题