Как вернуть перечислимый тип на PHP SOAP-сервере - PullRequest
1 голос
/ 25 марта 2011

Я создаю веб-сервис с использованием основных классов SOAP php, и мне нужно вернуть переменную перечислимого типа. Это определение типа в WSDL:

<xsd:simpleType name="ErrorCodeEnum">
        <xsd:restriction base="xsd:string">
          <xsd:enumeration value="OK"/>
          <xsd:enumeration value="INTERNAL_ERROR"/>
          <xsd:enumeration value="TOO_MANY_REQUESTS"/>
        </xsd:restriction>
</xsd:simpleType>

server.php:

<?php
class testclass {
   public function testfunc($param) {
      $resp = new testResp();
      $resp->errorCode = 'OK'; #SoapServer returns xsd:string type.
      return $resp;
   }
}

class testReq {}

class testResp {
   public $errorCode;
}

$class_map = array('testReq' => 'testReq', 'testResp' => 'testResp');
$server = new SoapServer (null, array('uri' => 'http://test-uri/', 'classmap' => $class_map));
$server->setClass ("testclass");
$server->handle();
?>

Ответ:

<ns1:testResponse>
     <return xsi:type="SOAP-ENC:Struct">
        <errorCode xsi:type="xsd:string">OK</errorCode>
     </return>
</ns1:testResponse>

Как мне сделать, чтобы вернуть ErrorCodeEnum вместо string?

Ответы [ 2 ]

2 голосов
/ 28 марта 2011

Я решил это.Возникла проблема с сервером, который не загружал файл WSDL.Это раздел types в WSDL:

<wsdl:types>
   <xsd:schema targetNamespace="http://schema.example.com">
      <xsd:simpleType name="ErrorCodeEnum">
         <xsd:restriction base="xsd:string">
            <xsd:enumeration value="OK"/>
            <xsd:enumeration value="INTERNAL_ERROR"/>
            <xsd:enumeration value="TOO_MANY_REQUESTS"/>
         </xsd:restriction>
      </xsd:simpleType>
      <xsd:complexType name="testResp">
         <xsd:all>
            <xsd:element name="errorCode" type="xsd:ErrorCodeEnum"/>
         </xsd:all>
      </xsd:complexType>
   </xsd:schema>
</wsdl:types>

Фактический ответ сервера:

<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://schema.example.com" 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/">
   <SOAP-ENV:Body>
      <ns1:testResponse>
         <testReturn xsi:type="ns1:testResp">
            <errorCode xsi:type="xsd:ErrorCodeEnum">OK</errorCode>
         </testReturn>
      </ns1:testResponse>
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
0 голосов
/ 25 марта 2011

Проверьте это:

Вызов веб-службы (SOAP) с использованием PHP с перечислениями

Перечисление указывает только допустимые значения.Пока вы возвращаете строку, которая оценивается как "OK", "INTERNAL_ERROR" или "TOO_MANY_REQUESTS", она должна работать нормально.

...