gpt4 book ai didi

ios - iOS 中的 SOAP 请求

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:15:47 25 4
gpt4 key购买 nike

我有这个 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();
}
?>

最佳答案

添加您的 WSDL,创建 stub ,然后开始使用 iOS 应用程序中的网络服务。

http://sudzc.com/

希望这就是您要找的。

尽情享受吧!

关于ios - iOS 中的 SOAP 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10472333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com