NSString *urlString = [NSString
stringWithFormat:@"http://192.168.1.15/abc/service.asmx?op=GetCenter"];
NSURL *url = [NSURL URLWithString:[urlString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
NSData *data = [[NSData alloc] initWithContentsOfURL:url];
NSError *error;
NSMutableArray *json =[NSJSONSerialization JSONObjectWithData:data options:kNilOptions error:&error];
NSLog(@"%@",[json description]);
I have try this but it returns null value insted of call function.
Program ended with exit code: 9(lldb)
How to recognized if webserive is called or not or how call that function?