2

我有这个 SOAP 请求,我在 php 中使用它来获取一些信息,但我似乎无法弄清楚如何在 Xcode 中执行此操作,希望有人能指出我正确的方向

<?php
$wsdl_url = "https://www.service.com/mySoapService.wsdl";
$client = new SoapClient($wsdl_url);
var_dump($client->__getFunctions());

try {
    $userName = 'myUsername';
    $password = 'myPassword';
    $result = $client->retrieveUsage(new SoapParam(array("UserId" => $userName, "Password" => $password), "RetrieveUsageRequestType"));

    print '<pre>';
        print_r($result);
    print '</pre>';
} catch (Exception $e) {
    echo $e->getMessage();
}
?>
4

2 回答 2

3

添加您的 WSDL,创建存根,然后开始使用 iOS 应用程序中的 Web 服务。

http://sudzc.com/

我希望这就是你要找的。

享受!

于 2012-05-06T16:55:22.327 回答
0

我使用http://easywsdl.com生成类。与我的 WS 完美搭配

于 2014-04-03T18:39:56.993 回答