61

是否有任何 PHP 工具可用于生成代码以使用基于其WSDL的Web 服务?类似于在 Visual Studio 中单击“添加 Web 引用”或对 Java 执行相同操作的 Eclipse 插件。

4

7 回答 7

87

在 PHP 5 中,您可以使用WSDL 上的SoapClient来调用 Web 服务函数。例如

$client = new SoapClient("some.wsdl");

$client 现在是一个对象,它具有 some.wsdl 中定义的类方法。因此,如果 WSDL 中有一个名为 getTime 的方法,那么您只需调用:

$result = $client->getTime();

结果将(显然)在 $result 变量中。您可以使用 __getFunctions 方法返回所有可用方法的列表。

于 2008-08-23T18:54:21.680 回答
21

我在wsdl2php方面取得了巨大的成功。它将自动为您的 Web 服务中使用的所有对象和方法创建包装类。

于 2008-08-15T18:36:14.227 回答
10

我过去使用过NuSOAP。我喜欢它,因为它只是一组您可以包含的 PHP 文件。无需在 Web 服务器上安装任何内容,也无需更改配置选项。它也有 WSDL 支持,这是一个额外的好处。

于 2008-08-13T13:54:10.897 回答
2

本文介绍如何使用 PHP SoapClient 调用 api Web 服务。

于 2011-07-26T09:17:30.267 回答
1

好吧,这些功能特定于您用于以这些语言进行开发的工具。

如果(例如)您使用记事本编写代码,您将不会拥有这些工具。所以,也许你应该问你正在使用的工具的问题。

对于 PHP:http ://webservices.xml.com/pub/a/ws/2004/03/24/phpws.html

于 2008-08-07T07:17:55.340 回答
1

嗨我从这个网站得到这个:http ://forums.asp.net/t/887892.aspx?Consume+an+ASP+NET+Web+Service+with+PHP

Web 服务具有Add采用两个参数的方法:

<?php
    $client = new SoapClient("http://localhost/csharp/web_service.asmx?wsdl");

     print_r( $client->Add(array("a" => "5", "b" =>"2")));
?>
于 2015-09-09T09:08:35.363 回答
1

假设您获得了以下内容:

<x:Envelope xmlns:x="http://schemas.xmlsoap.org/soap/envelope/" xmlns:int="http://thesite.com/">
    <x:Header/>
    <x:Body>
        <int:authenticateLogin>
            <int:LoginId>12345</int:LoginId>
        </int:authenticateLogin>
    </x:Body>
</x:Envelope>

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
    <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
        <authenticateLoginResponse xmlns="http://thesite.com/">
            <authenticateLoginResult>
                <RequestStatus>true</RequestStatus>
                <UserName>003p0000006XKX3AAO</UserName>
                <BearerToken>Abcdef1234567890</BearerToken>
            </authenticateLoginResult>
        </authenticateLoginResponse>
    </s:Body>
</s:Envelope>

假设访问http://thesite.com/表示 WSDL 地址为: http ://thesite.com/PortalIntegratorService.svc?wsdl

$client = new SoapClient('http://thesite.com/PortalIntegratorService.svc?wsdl');
$result = $client->authenticateLogin(array('LoginId' => 12345));
if (!empty($result->authenticateLoginResult->RequestStatus)
    && !empty($result->authenticateLoginResult->UserName)) {
    echo 'The username is: '.$result->authenticateLoginResult->UserName;
}

如您所见,虽然 LoginId 值可以更改,但在 PHP 代码中使用了 XML 中指定的项目。

于 2016-05-06T09:10:03.407 回答