通过iphone将文本发送到servlet

时间:2012-01-26 11:37:39

标签: iphone servlets httpconnection


 我想要做的是,我正在创建一个非常简单的iPhone应用程序,文本字段和按钮,按下它应该将文本字段中的文本发送到本地托管的servlet(玻璃鱼3.1.1),只是为了确保请求完成后我输入一个简单的

system.out.println("Request received");

每次我按下按钮,我去检查服务器日志,它是空的! 我在浏览器中尝试了相同的URL然后检查日志,“请求已收到”在日志中。

连接到按钮的方法是:
-(IBAction) connectToServer:(id)sender{ NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://localhost:8080/Test/Home"]]; NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self]; }

我真的不知道我是否在这里遗漏任何东西,任何帮助?

1 个答案:

答案 0 :(得分:0)

您尚未开始连接

因此,您的操作方法应如下所示:

- (IBAction)connectToServer:(id)sender {
    NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://localhost:8080/Test/Home"]];
    NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
    [theConnection start];
}

或者,您可以使用不同的初始化程序:

- (IBAction)connectToServer:(id)sender {
    NSURLRequest *theRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://localhost:8080/Test/Home"]];
    [NSURLConnection connectionWithRequest:theRequest delegate:self];
}

或者

- (IBAction)connectToServer:(id)sender {
    NSURLRequest *theRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://localhost:8080/Test/Home"]];
    [[NSURLConnection alloc] initWithRequest:theRequest delegate:self startImmediately:YES];
}