我想将 NSDictionary 发布到基于 Java 的 Web 服务。但是,网络服务没有响应我的呼叫。请通过以下代码:
服务器端代码:(Java Web 服务):
@Consumes("application/json")
@POST
@Path("/SaveChallenge")
public String saveChallenge(@QueryParam("jsonChallengeDTO") JSONObject jsonChallengeDTO) {
String data = "";
data = jsonBusiness.createChallenge(jsonChallengeDTO);
return data;
}
客户端代码:(来自IOS移动应用)
NSError *error;
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
NSData* jsonData = [NSJSONSerialization dataWithJSONObject:appDelegate.userSelection options:kNilOptions error:&error];
NSString *sendChallengeInfo = [appDelegate.URL stringByAppendingString:[NSString stringWithFormat:@"FirstPickService/SaveChallenge?jsonChallengeDTO=%@",jsonData]];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];
[request setURL:[NSURL URLWithString:sendChallengeInfo]];
[request setHTTPMethod:@"POST"];
[request setValue:@"application/json;charset=UTF-8" forHTTPHeaderField:@"Content-Type"];
[request setValue:@"application/json" forHTTPHeaderField:@"Accept"];
[request setHTTPBody:jsonData];
[NSURLConnection connectionWithRequest:request delegate:self];
这**appDelegate.userSelection**
是我想发布到 Web 服务的 NSMutableDictionary。
当尝试使用 String 时,我们可以将数据发布到 Web 服务,而不是尝试使用 JSon。
请查看并让我知道我错在哪里。
提前致谢,