我正在使用 ASIHTTPRequest 类来与 Web 服务通信并获得响应。这就是我向服务器发送请求的方式
NSString *str = [NSString stringWithFormat:@"%@verifyLogin.json", serverUrl];
NSURL *url = [NSURL URLWithString:[str stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
ASIHTTPRequest *request = [[[ASIHTTPRequest alloc] initWithURL:url] autorelease];
[request addRequestHeader:@"Content-Type" value:@"text/x-gwt-rpc; charset=utf-8"];
NSDictionary* data = [NSDictionary dictionaryWithObjectsAndKeys:emailId, @"username", pwd, @"password", nil];
[request appendPostData: [[data JSONFragment] dataUsingEncoding: NSUTF8StringEncoding]];
[request setRequestMethod:@"POST"];
[request setDelegate:self];
[request setDidFinishSelector: @selector(gotLoginResponse:)];
[request setDidFailSelector: @selector(loginRequestFailed:)];
[networkQueue addOperation: request];
[networkQueue go];
控制立即进入错误程序,错误描述和域是
无法启动 HTTP 连接和ASIHTTPRequestErrorDomain
我可以通过用于检查 HTTP 请求的桌面工具获得相同的请求,因此我知道设置都是正确的。
有人可以告诉我在发送请求时我在这里缺少什么吗?
谢谢。