SOAP请求与PHP不工作-没有回答从PHP getLastRequest


SOAP Request with PHP does not work - no answer from PHP getLastRequest

我们正在为UNIFACE 9.3编写一个web服务。我们的服务交付WSDL。我们在第一个测试中使用SOAPUi,并希望在更多的测试中使用PHP,但是PHP什么也没有给我们!为什么?

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"    xmlns:urn="urn:uniface:applic:wrapped:services:WEBSOAPWSV">
<soapenv:Header/>
<soapenv:Body>
    <urn:INFO>
        <urn:SP_IN>OCCURRENCE=TEST</urn:SP_IN>
    </urn:INFO>
</soapenv:Body>
</soapenv:Envelope>

这是我们的php测试集:

$client = new SoapClient("http://patch-server:8080/uniface/services/websoapwsvdlw?wsdl");
var_dump($client->__getFunctions());
$args = array('OCCURRENCE', 'TEST');
$result = $client->__soapCall('INFO', $args);
echo "Request:'n" . $client->__getLastRequest() . "'n";

PHP-getFunctions提供这个:

array(6) {
[0]=> string(41) "ACCEPTResponse ACCEPT(ACCEPT $parameters)"
[1]=> string(35) "EXECResponse EXEC(EXEC $parameters)"
[2]=> string(35) "INFOResponse INFO(INFO $parameters)"
[3]=> string(41) "INSERTResponse INSERT(INSERT $parameters)"
[4]=> string(35) "QUITResponse QUIT(QUIT $parameters)"
[5]=> string(41) "UPDATEResponse UPDATE(UPDATE $parameters)" } 

答案是什么都没有!为什么?非常感谢。

我真的不懂SOAP,我刚刚问了一个关于SOAP调用的问题,但是如果您将代码稍微更改为:

// change here
$options        = array( 'trace' => 1, 'exceptions' => 1);
$client = new SoapClient("http://patch-server:8080/uniface/services/websoapwsvdlw?wsdl", $options);
var_dump($client->__getFunctions());
$args = array('OCCURRENCE', 'TEST');
// change here..
$result = $client->INFO($args);
echo "Request:'n" . $client->__getLastRequest() . "'n";
$client = new SoapClient($url, array("trace" => 1));