HashPosition pos;
zend_hash_internal_pointer_reset_ex(ft, &pos);
while (zend_hash_get_current_data_ex(ft, (void **)&f, &pos) != FAILURE) {
- add_next_index_string(return_value, f->common.function_name, 1);
+ if ((service->type != SOAP_CLASS) || (f->common.fn_flags & ZEND_ACC_PUBLIC)) {
+ add_next_index_string(return_value, f->common.function_name, 1);
+ }
zend_hash_move_forward_ex(ft, &pos);
}
}
--- /dev/null
+--TEST--
+Bug #29844 (SoapServer::setClass() should not export non-public methods)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
+--FILE--
+<?php
+
+class hello_world {
+ public function hello($to) {
+ return 'Hello ' . $to;
+ }
+ private function bye($to) {
+ return 'Bye ' . $to;
+ }
+}
+
+$server = new SoapServer(NULL, array("uri"=>"test://"));
+$server->setClass('hello_world');
+$functions = $server->getFunctions();
+foreach($functions as $func) {
+ echo $func . "\n";
+}
+?>
+--EXPECT--
+hello
--- /dev/null
+--TEST--
+Bug #29844 (SOAP doesn't return the result of a valid SOAP request)
+--SKIPIF--
+<?php require_once('skipif.inc'); ?>
+--FILE--
+<?php
+
+class hello_world {
+ public function hello($to) {
+ return 'Hello ' . $to;
+ }
+}
+
+class LocalSoapClient extends SoapClient {
+
+ function LocalSoapClient($wsdl, $options) {
+ $this->SoapClient($wsdl, $options);
+ $this->server = new SoapServer($wsdl, $options);
+ $this->server->setClass('hello_world');;
+ }
+
+ function __doRequest($request, $location, $action, $version) {
+ ob_start();
+ $this->server->handle($request);
+ $response = ob_get_contents();
+ ob_end_clean();
+ return $response;
+ }
+
+}
+
+$client = new LocalSoapClient(dirname(__FILE__)."/bug29844.wsdl", array("trace"=>1));
+var_dump($client->hello('davey'));
+?>
+--EXPECT--
+string(11) "Hello davey"
--- /dev/null
+<?xml version="1.0" ?>\r
+<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://davey.synapticmedia.net/php-mag/shafikdavey_automaticwebservices/src/Listing%201.php" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" name="Crtx_SOAP_AutoDiscover_Example" targetNamespace="http://davey.synapticmedia.net/php-mag/shafikdavey_automaticwebservices/src/Listing%201.php">\r
+ <portType name="Crtx_SOAP_AutoDiscover_ExamplePort">\r
+ <operation name="hello">\r
+ <input message="tns:helloRequest" />\r
+ <output message="tns:helloResponse" />\r
+ <documentation>Say Hello to Somebody</documentation>\r
+ </operation>\r
+ <operation name="goodBye">\r
+ <input message="tns:goodByeRequest" />\r
+ <output message="tns:goodByeResponse" />\r
+ <documentation>Say Goodbye to Somebody</documentation>\r
+ </operation>\r
+ </portType>\r
+ <binding name="Crtx_SOAP_AutoDiscover_ExampleBinding"\r
+ type="tns:Crtx_SOAP_AutoDiscover_ExamplePort">\r
+ <soap:binding style="document"\r
+ transport="http://schemas.xmlsoap.org/soap/http" />\r
+ <operation name="hello">\r
+ <input>\r
+ <soap:body use="encoded"\r
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />\r
+ </input>\r
+ <output>\r
+ <soap:body use="encoded"\r
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />\r
+ </output>\r
+ <soap:operation soapAction="http://davey.synapticmedia.net/php-mag/shafikdavey_automaticwebservices/src/Listing%201.php#hello" />\r
+ </operation>\r
+ <soap:binding style="document"\r
+ transport="http://schemas.xmlsoap.org/soap/http" />\r
+ <operation name="goodBye">\r
+ <input>\r
+ <soap:body use="encoded"\r
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />\r
+ </input>\r
+ <output>\r
+ <soap:body use="encoded"\r
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />\r
+ </output>\r
+ <soap:operation soapAction="http://davey.synapticmedia.net/php-mag/shafikdavey_automaticwebservices/src/Listing%201.php#goodBye" />\r
+ </operation>\r
+ </binding>\r
+ <service name="Crtx_SOAP_AutoDiscover_ExampleService">\r
+ <port name="tns:Crtx_SOAP_AutoDiscover_ExamplePort"\r
+ binding="tns:Crtx_SOAP_AutoDiscover_ExampleBinding">\r
+ <soap:address location="http://davey.synapticmedia.net/php-mag/shafikdavey_automaticwebservices/src/Listing%201.php" />\r
+ </port>\r
+ </service>\r
+ <message name="helloRequest">\r
+ <part name="to" type="xsd:string" />\r
+ <documentation>Say Hello to Somebody</documentation>\r
+ </message>\r
+ <message name="helloResponse">\r
+ <part name="helloReturn" type="xsd:string" />\r
+ <documentation>The greeting</documentation>\r
+ </message>\r
+ <message name="goodByeRequest">\r
+ <part name="to" type="xsd:string" />\r
+ <documentation>Say Goodbye to Somebody</documentation>\r
+ </message>\r
+ <message name="goodByeResponse">\r
+ <part name="goodByeReturn" type="xsd:string" />\r
+ <documentation>The goodbye</documentation>\r
+ </message>\r
+</definitions>\r