私は自分の Web サイトのサーバーに Web サービスをアップロードします。www.example.com/webservice/SampleService.asmx
それに接続する方法はGetAllUserInfo
次のとおりです。この Web サービスを使用するために以下のコードを使用しますが、実行時エラーが発生します。この Web サービスを使用するのを手伝ってくれる人はいますか?
- 私はこの Web サービスをテストし、Visual Studio で適切に動作します
NSString *soapMsg =[NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"utf-8\"?>" "<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/\">" "<soap:Body>" "<GetAllUserInfo xmlns=\"http://www.example.com/\">" "</GetAllUserInfo>" "</soap:Body>" "</soap:Envelope>"]; NSURL *url = [NSURL URLWithString:@"http://www.example.com/SampleService.asmx"]; NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url]; NSString *msgLength = [NSString stringWithFormat:@"%d", [soapMsg length]]; [req addValue:@"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"]; [req addValue:@"http://www.example.com/GetAllUserInfo" forHTTPHeaderField:@"SOAPAction"]; [req addValue:msgLength forHTTPHeaderField:@"Content-Length"]; [req setHTTPMethod:@"POST"]; [req setHTTPBody:[soapMsg dataUsingEncoding:NSUTF8StringEncoding]];