Wcf rest服务GET&POST iOS

我的朋友为我的应用程序写了一个服务。 这里是链接http://213.155.113.51/cronos/medconcept/services/v3/iOSServices.svc/productsget ,这是testing链接。 我只是想获得string。 我试过这篇文章http://www.codeproject.com/Tips/569495/Creating-a-WCF-Service-with-JSON-Data-and-Using-it但Json是null

这是我的代码的一部分;

 NSString *request = [NSString stringWithFormat:@"link here"]; NSURL *URL = [NSURL URLWithString: [request stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; NSError *error = nil; NSData *data = [NSData dataWithContentsOfURL:URL options:NSDataReadingUncached error:&error]; NSLog(@"data = %@",data); if(!error) { NSDictionary *json = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingMutableContainers error:&error]; NSLog(@"Json = %@",json); NSMutableArray *array= [json objectForKey:@"GetUserResult"]; NSLog(@"array = %@",array); /* for(int i=0; i< array.count; i++) { NSDictionary *userInfo= [array objectAtIndex:i]; NSInteger *id = [userInfo objectForKey:@"ID"]; NSString *name = [userInfo objectForKey:@"NAME"]; NSString *surname = [userInfo objectForKey:@"SURNAME"]; NSLog(@"ID: %d NAME: %@ SURNAME: %@", id,name,surname); } */ } 

输出:Json =(null)array =(null)

我究竟做错了什么? 或者你知道任何替代方法获取和发布string?

感谢您的关注和build议。