Webサービスに接続してデータを取得しようとしましたが、成功しませんでした。これが私がしたことです。
これは私が接続しようとしているWebサービスですhttp://www.rcsb.org/pdb/software/rest.do
これが私のexample.hファイルです:
#import <Foundation/Foundation.h>
@interface example : NSObject {
NSMutableData *receivedData;
}
@property(nonatomic, retain) NSMutableData *receivedData;
- (void) getDataFromServer;
@end
これが私のexample.mファイルです:
「example.h」をインポートします
@implementation example
@synthesize receivedData;
-(void) getDataFromServer {
//prepare request
NSString *urlString = [NSString stringWithFormat:@"http://www.rcsb.org/pdb/rest/search/"];
NSMutableURLRequest *theRequest = [[NSMutableURLRequest alloc] init];
[theRequest setURL:[NSURL URLWithString:urlString]];
[theRequest setHTTPMethod:@"POST"];
NSString *myXmlQuery = [[NSString alloc] initWithFormat:@"<?xml version=\"1.0\" encoding=\"UTF-8\"?><orgPdbQuery><version>head</version><queryType>org.pdb.query.simple.AdvancedKeywordQuery</queryType><description>Text Search for: chloro</description><keywords>chloro</keywords></orgPdbQuery>"];
//set Headers
NSString *contentType = [NSString stringWithFormat:@"application/xml"];
[theRequest addValue:contentType forHTTPHeaderField:@"Content-Type"];
[theRequest addValue:[NSString stringWithFormat:@"%ld", [myXmlQuery length]] forHTTPHeaderField:@"Content-Length"];
//create the Body
NSMutableData *postBody = [NSMutableData data];
[postBody appendData:[[NSString stringWithFormat:@"<xml>"] dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[myXmlQuery dataUsingEncoding:NSUTF8StringEncoding]];
[postBody appendData:[[NSString stringWithFormat:@"</xml>"] dataUsingEncoding:NSUTF8StringEncoding]];
//post
[theRequest setHTTPBody:postBody];
NSLog(@"%@", myXmlQuery);
//get response
NSHTTPURLResponse *urlResponse = [[NSHTTPURLResponse alloc] init];
NSError *error = [[NSError alloc] init];
NSData *responseData = [NSURLConnection sendSynchronousRequest:theRequest returningResponse:&urlResponse error:&error];
NSString *result = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSLog(@"Response code- %ld",[urlResponse statusCode]);
NSLog(@"Response: %@", result);
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
NSLog(@"in didReceiveResponse....setting receivedData to zero");
//[receivedData setLength:0];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
NSLog(@"In didReceiveData...receiving data and appending to receivedData");
[receivedData appendData:data];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
NSLog(@"Connection failed with error");
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
NSLog(@"in connectionDidFinishLoading");
NSLog(@"Succeeded! Received %ld bytes of data", [receivedData length]);
}
@end
これに対する応答としてhtmlページを取得しています。さらに、出力にNSLogステートメントが含まれていないため、connectionDidFinishLoadingが呼び出されていません。私が取得しているのは、接続しようとしているURLのhtmlバージョンだけです。
どんな種類の助けもいただければ幸いです。ありがとうございました。
PS:このテキストを適切にフォーマットしようとしていますが、自動的にこのようにフォーマットされます。ご不便おかけしてすみません。