像在SoapUI中一样,如何在php中进行SOAP请求?

时间:2019-04-24 16:21:54

标签: php xml soap wsdl

我对php还是陌生的,并且在执行肥皂请求时全部迷失了。我还有另一个问题How to send a SOAP request in javascript, like in SoapUI,我刚刚得到了回答,但是我现在决定使用php而不是Node.js。因为我希望我的php代码执行完全相同的操作,所以我将在下面重复我之前的问题:

我有这个WSDL网站,我需要从中获得一些答案。我已经想出如何在SoapUI中做到这一点,但我不知道如何在php中做到这一点。我在soapUI中发送的请求如下所示:

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:uni="https://uni-login.dk">
   <soap:Header/>
   <soap:Body>
      <uni:hentDataAftaler>
         <uni:wsBrugerid>?</uni:wsBrugerid>
         <uni:wsPassword>?</uni:wsPassword>
      </uni:hentDataAftaler>
   </soap:Body>
</soap:Envelope>

我也有wsdl-link:https://wsiautor.uni-login.dk/wsiautor-v4/ws?WSDL

希望您有一些建议,并告诉我是否需要更多信息来回答我的问题:)

我之前的问题的答案如下

    const soapRequest = require('easy-soap-request');
    const url = 'https://wsiautor.uni-login.dk/wsiautor-v4/ws';
    const headers = {
      'Content-Type': 'application/soap+xml;charset=UTF-8',
      'soapAction': 'https://wsiautor.uni-login.dk/hentDataAftaler',
};
// example data
const xml = `
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:uni="https://uni-login.dk">
   <soap:Header/>
   <soap:Body>
      <uni:hentDataAftaler>
         <uni:wsBrugerid>?</uni:wsBrugerid>
         <uni:wsPassword>?</uni:wsPassword>
      </uni:hentDataAftaler>
   </soap:Body>
</soap:Envelope>
`;


// usage of module
soapRequest(url, headers, xml).then(({response: {body, statusCode}}) => {
    console.log(body);
    console.log(statusCode);
}).catch((errorBody) => {
    console.error(errorBody);
});

2 个答案:

答案 0 :(得分:0)

至少可以使用两个扩展名来启用它。

我会推荐老式的curl扩展名。

另一个提示是,使用Postman可以使用curlhttp-request为HTTP请求生成代码。您可以在右上角发送按钮附近找到它。

请先确认您安装了扩展程序(在我的情况下是使用apt安装的):

sudo apt-get install php-curl

无论如何,我相信您可以使用以下代码来完成它:

<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_PORT => "80",
  CURLOPT_URL => "https://wsiautor.uni-login.dk/wsiautor-v4/ws",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_SSL_VERIFYPEER => false,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => "<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" 
  xmlns:uni=\"https://uni-login.dk\">
    <soapenv:Header/>
     <soapenv:Body>
       <uni:hentDataAftaler>
         <uni:wsBrugerid>?</uni:wsBrugerid>
         <uni:wsPassword>?</uni:wsPassword>
       </uni:hentDataAftaler>
      </soapenv:Body>
    </soapenv:Envelope>",
  CURLOPT_HTTPHEADER => array(
    "Content-Type: application/soap+xml;charset=UTF-8",
    "soapAction: https://wsiautor.uni-login.dk/hentDataAftaler"
  ),
));

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}

答案 1 :(得分:0)

您可以使用本机PHP SoapClient类来实现您的计划。在您的情况下,使用SoapClient甚至更容易,因为代码将不那么复杂且更易于理解。

$client = null;

try {
    $client = new SoapClient(
        'https://wsiautor.uni-login.dk/wsiautor-v4/ws?WSDL',
        [
            'cache_wsdl' => WSDL_CACHE_NONE,
            'encoding' => 'utf-8',
            'exceptions' => true,
            'soap_version' => SOAP_1_1,
            'trace' => true,
        ],
    );
} catch (SoapFault $e) {
    echo "<pre>";
    var_dump($e->getMessage());
    echo "</pre>";

    if ($client instanceof SoapClient) {
        echo "<pre>";
        var_dump($client->__getLastRequest(), $client->__getLastResponse());
        echo "</pre>";
    }
}

如果我们看一下该代码示例,我们将使用您的wsdl url和一些选项实例化一个简单的SoapClient,以授予对某些非常酷的调试功能的访问权限。 trace选项启用__getLastRequest()__getLastResponse()功能,因此,如果客户端还活着,则可以轻松查看已发送的内容和响应的内容。您应该将此选项设置为false。开发过程结束后,cache_wsdl选项也应删除。

使用PHP SoapClient类发送数据

如果我们查看您的wsdl文件,则可以看到该函数的确切定义以及该函数所需的类型。因此,让我们看看hentDataAftaler的需求。

<message name="hentDataAftalerIn">
    <part name="parameters" element="uni:hentDataAftaler"/>
</message>

这是hentDataAftaler请求的定义。它说此函数需要属性类型uni:hentDataAftaler。在这种情况下,uni就是其中定义了hentDataAftaler的名称空间。您的wsdl文件还说,uni名称空间的类型定义是在单独的xsd文件中定义的,该文件会导入另一个xsd文件。深入研究xsd定义后,您的请求参数将定义如下。

<xs:complexType name="Credentials">
    <xs:sequence>
        <xs:element name="wsBrugerid" type="xs:string"/>
        <xs:element name="wsPassword" type="xs:string"/>
    </xs:sequence>
</xs:complexType>

有了这些知识,您可以轻松地使用php调用您的webservice方法。按照定义,您的参数是一个复杂类型,等于一个PHP对象。

class Credentials
{
    public $wsBrugerid;
    public $wsPassword;

    public function __construct(SoapVar $wsBrugerid, SoapVar $wsPassword)
    {
        $this->wsBrugerid = $wsBrugerid;
        $this->wsPassword = $wsPassword;
    }
}

$parameters = new Credentials(
    new SoapVar('brugerid', XSD_STRING, null, null, 'wsBrugerid', 'https://uni-login.dk'),
    new SoapVar('password', XSD_STRING, null, null, 'wsPassword', 'https://uni-login.dk')
);

$result = $client->hentDataAftaler($parameters);

我们在这里做了什么?我们已经将复杂类型从xsd定义改编成PHP类。此类采用两个参数作为SoapVar对象,我们在其中定义值和名称空间的内容。最后,我们可以将该对象作为参数并调用webservice方法hentDataAftaler。 Soap客户端会自动知道函数名称,因为Soap客户端直接从wsdl文件获取此信息。

希望这会有所帮助。