SoapFault: DTD не поддерживается SOAP - PullRequest
0 голосов
/ 01 февраля 2019

Я делаю wsdl-файл с помощью nusoap.Файл кажется правильным, но при попытке вызвать функцию выдает следующую ошибку:

Fatal error: Uncaught SoapFault exception: [Client] DTD are not supported by SOAP

Код сервера следующий:

include('lib/nusoap.php');

$ns = 'test';

$server = new soap_server;
$server->configureWSDL('test', $ns);

$server->register('welcome',
array('name' => 'xsd:string'),
array('return' => 'xsd:string'));

function welcome($name){
    return "Welcome, " . $name;
}

$server->service('php://input');

Сгенерированный файл wsdl, полученный с помощью? Wsdl, выглядит так:

<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="test" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="test">
<types>
<xsd:schema targetNamespace="test">
<xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
<xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/>
</xsd:schema>
</types>
<message name="welcomeRequest">
<part name="name" type="xsd:string"/>
</message>
<message name="welcomeResponse">
<part name="return" type="xsd:string"/>
</message>
<portType name="testPortType">
<operation name="welcome">
<input message="tns:welcomeRequest"/>
<output message="tns:welcomeResponse"/>
</operation>
</portType>
<binding name="testBinding" type="tns:testPortType">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="welcome">
<soap:operation soapAction="http://localhost/2018/ServerWelcome.php/welcome" style="rpc"/>
<input>
<soap:body use="encoded" namespace="" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="test">
<port name="testPort" binding="tns:testBinding">
<soap:address location="http://localhost/2018/ServerWelcome.php"/>
</port>
</service>
</definitions>

И код для клиента:

include('lib/nusoap.php');

try{
    $client = new soapclient('http://localhost/2018/ServerWelcome.php?wsdl');

    $response = $client->welcome('John');

    echo($respone);

} catch(soap_fault $e){
    var_dump($e);
}

Я читал много похожих вопросов, нолюбой ответ работает.Я не знаю, что делать ...

...