Я пытаюсь создать пример файла wsdl, который будет прочитан PHP SoapClient, и хотя мой документ wsdl sort-of работает (возвращает функцию правильно), что-то все равно не так, потому что Метод PHP __getFunctions возвращает следующее:
array(1) { [0]=> string(35) "UNKNOWN getDocument(UNKNOWN $input)" }
Из того, что возвращает эта функция, кажется, что определения типов не на 100% правильные, так как типы отображаются как НЕИЗВЕСТНЫЕ.
<?xml version="1.0"?>
<definitions name="Document" targetNamespace="urn:Document" xmlns:tns="urn:Document" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Document">
<xsd:element name="InputUserType" type="xsd:string" />
<xsd:element name="DocumentResponseType" type="xsd:string" />
</xsd:schema>
</types>
<message name="getDocumentInputUser">
<part name="input" type="tns:InputUserType" />
</message>
<message name="getDocumentResponse">
<part name="return" type="tns:DocumentResponseType" />
</message>
<portType name="DocumentPort">
<operation name="getDocument">
<input message="tns:getDocumentInputUser" />
<output message="tns:getDocumentResponse" />
</operation>
</portType>
<binding name="DocumentBinding" type="tns:DocumentPort">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="getDocument">
<soap:operation soapAction="urn:DocumentAction" />
<input>
<soap:body use="encoded" namespace="urn:Document" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body use="encoded" namespace="urn:Document" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
</binding>
<service name="DocumentService">
<port name="DocumentPort" binding="tns:DocumentBinding">
<soap:address location="http://www.apollo.co.za/soap/test2server.php" />
</port>
</service>
</definitions>
Я пытаюсь определить простой документ wsdl, который имеет одну операцию «getDocument», которая принимает строковый параметр имени пользователя и возвращает строковый результат. Я очень новичок в SOAP и немного борюсь с этим, поэтому буду очень признателен, если кто-нибудь укажет, что не так в моем определении wsdl.