从iOS应用程序调用Web服务

时间:2013-11-16 17:23:06

标签: ios xml web-services soap

我想创建一个调用Web服务的简单iOS应用程序。

我提到了以下链接    http://www.codeproject.com/Tips/622376/iOS-Soap-Webservice-Calling-and-Parsing-the-Respon

我试图运行我从这个链接获得的示例项目。但是我得到了响应,如

“soap:ClientServer无法识别HTTP标头SOAPAction的值:http://tempuri.org/。”

我无法找出这个错误背后的原因是什么。我对Web服务非常新。可以帮助我解决这个错误吗?有人请告诉我,调用的基本步骤是什么来自iOS应用程序的Web服务.Xcode和iOS是否有任何特殊版本要求用于调用Web服务?请帮助我...提前感谢您的帮助......

这是我用来发送请求的代码

 NSString *soapMessage = [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
                             "<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
                             "<soap:Body>\n"
                             " <CelsiusToFahrenheit xmlns=\"http://tempuri.org/\">\n"
                             "<Celsius>%@</Celsius>\n"
                             "</CelsiusToFahrenheit>\n"
                             "</soap:Body>\n"
                             "</soap:Envelope>\n" ,textFieldCelcisus.text];


    NSURL *url = [NSURL URLWithString:@"http://w3schools.com/webservices/tempconvert.asmx"];
    NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url];
    NSString *msgLength = [NSString stringWithFormat:@"%d", [soapMessage length]];

    [theRequest addValue: @"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
    [theRequest addValue: @"http://tempuri.org/" forHTTPHeaderField:@"SOAPAction"];
    [theRequest addValue: msgLength forHTTPHeaderField:@"Content-Length"];
    [theRequest setHTTPMethod:@"POST"];
    [theRequest setHTTPBody: [soapMessage dataUsingEncoding:NSUTF8StringEncoding]];

    NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

    if( theConnection )
    {
        webData = [NSMutableData data] ;
        NSLog(@"webdata is %@",webData);
        NSLog(@"Problem");
    }
    else
    {
        NSLog(@"theConnection is NULL");
    }

2 个答案:

答案 0 :(得分:1)

更改此行:

[theRequest addValue: @"http://tempuri.org/" forHTTPHeaderField:@"SOAPAction"];

成:

[theRequest addValue: @"http://www.w3schools.com/webservices/CelsiusToFahrenheit" forHTTPHeaderField:@"SOAPAction"];

服务器抱怨SOAPAction的值。 SOAPAction在 WSDL 中定义,并且对于每个操作都是不同的。

由于您提供了服务URL并且该服务是公开的,我只是检查了它。 'CelsiusToFahrenheit'的SOAPAction似乎是: http://www.w3schools.com/webservices/CelsiusToFahrenheit

请注意,每个操作都有自己的SOAPAction,例如:

CelsiusToFahrenheit -> http://www.w3schools.com/webservices/CelsiusToFahrenheit
FahrenheitToCelsius -> http://www.w3schools.com/webservices/FahrenheitToCelsius
etc...

答案 1 :(得分:1)

以上回答是正确的,只建议使用NSURLSession而不是NSURLConnection。