1

次のコード、soapwebサービスを試しています。機能していません。

私を助けてください。

リンク

サービス

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"
"<request xmlns=\"http://searchupc.com/GenerateBarcode\">\n"
"<auth>5ggpf54TRghbnIvqS2XVGQQ0q6qCNuJ</auth>\n"
"<method>FetchProductByUPC</method>"
"<params>"
"<upc>026274920257</upc>"
"</params>"
"</request>\n"

"</soap:Body>\n"
"</soap:Envelope>\n"
];
NSLog(soapMessage);

NSURL *url = [NSURL URLWithString:@"http://www.simpleupc.com/api/"];
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://searchupc.com/GenerateBarcode/" forHTTPHeaderField:@"SOAPAction"];
[theRequest addValue: msgLength forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPMethod:@"POST"];
[theRequest setHTTPBody: [soapMessage dataUsingEncoding:NSUTF8StringEncoding]];
NSLog(@"SOAP CONNECTED qqq%@",theRequest);
NSURLConnection *theConnection = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
4

2 に答える 2

2

http://sudzc.com/を確認してください。xcodeプロジェクトが生成されます。

1:変換するWSDLのWebアドレスを入力します(保護されている場合は、ユーザー名とパスワードを入力します)

2:作成するコードバンドルのタイプを選択し(Objective c)、ダウンロードします。

'Generated'フォルダをプロジェクトにドラッグアンドドロップして、すべてのSOAPメッセージにアクセスするだけです。

これを試して。その本当に簡単でシンプルです。

于 2012-11-05T06:06:59.217 に答える
0

wsdlToObjcはかなり良いと思いました。これは、WSDLからクライアント側のObjCバインディングを生成します。http://code.google.com/p/wsdl2objc/からダウンロードできます。リンクhttp://www.priyaontech.com/2012/10/soap-based-webservices-integration-in-an-ios-app/は、サンプルプロジェクトでの使用法を説明しています。

于 2012-11-13T21:09:44.577 に答える