xref: /PHP-5.5/ext/soap/tests/bugs/bug30799.phpt (revision 1f655451)
1--TEST--
2Bug #30799 (SoapServer doesn't handle private or protected properties)
3--SKIPIF--
4<?php require_once('skipif.inc'); ?>
5--FILE--
6<?php
7class foo {
8	public    $a="a";
9	private   $b="b";
10	protected $c="c";
11
12}
13
14$x = new SoapClient(NULL,array("location"=>"test://",
15                               "uri" => "test://",
16                               "exceptions" => 0,
17                               "trace" => 1 ));
18$x->test(new foo());
19echo $x->__getLastRequest();
20echo "ok\n";
21?>
22--EXPECT--
23<?xml version="1.0" encoding="UTF-8"?>
24<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>
25ok
26