bug30799.phpt 1.0 KB

12345678910111213141516171819202122232425
  1. --TEST--
  2. Bug #30799 (SoapServer doesn't handle private or protected properties)
  3. --EXTENSIONS--
  4. soap
  5. --FILE--
  6. <?php
  7. class foo {
  8. public $a="a";
  9. private $b="b";
  10. protected $c="c";
  11. }
  12. $x = new SoapClient(NULL,array("location"=>"test://",
  13. "uri" => "test://",
  14. "exceptions" => 0,
  15. "trace" => 1 ));
  16. $x->test(new foo());
  17. echo $x->__getLastRequest();
  18. echo "ok\n";
  19. ?>
  20. --EXPECT--
  21. <?xml version="1.0" encoding="UTF-8"?>
  22. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="test://" 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:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><param0 xsi:type="SOAP-ENC:Struct"><a xsi:type="xsd:string">a</a><b xsi:type="xsd:string">b</b><c xsi:type="xsd:string">c</c></param0></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
  23. ok