菜鸟教程小白 发表于 2022-12-13 13:34:33

ios - iOS 中的 SOAP 请求


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

<pre><code>&lt;?php
$wsdl_url = &#34;https://www.service.com/mySoapService.wsdl&#34;;
$client = new SoapClient($wsdl_url);
var_dump($client-&gt;__getFunctions());

try {
    $userName = &#39;myUsername&#39;;
    $password = &#39;myPassword&#39;;
    $result = $client-&gt;retrieveUsage(new SoapParam(array(&#34;UserId&#34; =&gt; $userName, &#34;Password&#34; =&gt; $password), &#34;RetrieveUsageRequestType&#34;));

    print &#39;&lt;pre&gt;&#39;;
      print_r($result);
    print &#39;&lt;/pre&gt;&#39;;
} catch (Exception $e) {
    echo $e-&gt;getMessage();
}
?&gt;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>添加您的 WSDL,创建 stub ,然后开始使用 iOS 应用程序中的 Web 服务。</p>

<p> <a href="http://sudzc.com/" rel="noreferrer noopener nofollow">http://sudzc.com/</a> </p>

<p>我希望这就是你要找的。</​​p>

<p>享受吧!</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iOS 中的 SOAP 请求,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10472333/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10472333/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iOS 中的 SOAP 请求