我们正在将 Web 服务写入 UNIFACE 9.3。我们的服务提供 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)" }
答案是什么都没有!为什么?非常感谢。