felipe          Tue Jul 22 01:47:22 2008 UTC

  Modified files:              (Branch: PHP_5_3)
    /php-src/ext/soap   soap.c 
    /php-src/ext/soap/tests     any.phpt classmap002.phpt classmap003.phpt 
                                classmap004.phpt transport001.phpt 
                                typemap003.phpt typemap004.phpt 
                                typemap007.phpt typemap008.phpt 
                                typemap011.phpt typemap012.phpt 
    /php-src/ext/soap/tests/bugs        bug28969.phpt bug29795.phpt 
                                        bug29839.phpt bug29844.phpt 
                                        bug30045.phpt bug30106.phpt 
                                        bug30175.phpt bug30928.phpt 
                                        bug31695.phpt bug32776.phpt 
                                        bug32941.phpt bug34449.phpt 
                                        bug34453.phpt bug34643.phpt 
                                        bug35142.phpt bug35273.phpt 
                                        bug36226-2.phpt bug36226.phpt 
                                        bug36999.phpt bug37083.phpt 
                                        bug38004.phpt bug38005.phpt 
                                        bug38055.phpt bug38067.phpt 
                                        bug38536.phpt bug39121.phpt 
                                        bug42692.phpt 
  Log:
  - MFH: Added arginfo
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/soap.c?r1=1.156.2.28.2.30.2.17&r2=1.156.2.28.2.30.2.18&diff_format=u
Index: php-src/ext/soap/soap.c
diff -u php-src/ext/soap/soap.c:1.156.2.28.2.30.2.17 
php-src/ext/soap/soap.c:1.156.2.28.2.30.2.18
--- php-src/ext/soap/soap.c:1.156.2.28.2.30.2.17        Sun Jun 22 16:08:52 2008
+++ php-src/ext/soap/soap.c     Tue Jul 22 01:47:21 2008
@@ -17,7 +17,7 @@
   |          Dmitry Stogov <[EMAIL PROTECTED]>                             |
   +----------------------------------------------------------------------+
 */
-/* $Id: soap.c,v 1.156.2.28.2.30.2.17 2008/06/22 16:08:52 felipe Exp $ */
+/* $Id: soap.c,v 1.156.2.28.2.30.2.18 2008/07/22 01:47:21 felipe Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -277,14 +277,219 @@
 
 #define SOAP_CTOR(class_name, func_name, arginfo, flags) PHP_ME(class_name, 
func_name, arginfo, flags)
 
+/* {{{ arginfo */
+#ifdef ZEND_ENGINE_2
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapparam_soapparam, 0, 0, 2)
+       ZEND_ARG_INFO(0, data)
+       ZEND_ARG_INFO(0, name)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapheader_soapheader, 0, 0, 2)
+       ZEND_ARG_INFO(0, namespace)
+       ZEND_ARG_INFO(0, name)
+       ZEND_ARG_INFO(0, data)
+       ZEND_ARG_INFO(0, mustunderstand)
+       ZEND_ARG_INFO(0, actor)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapfault_soapfault, 0, 0, 2)
+       ZEND_ARG_INFO(0, faultcode)
+       ZEND_ARG_INFO(0, faultstring)
+       ZEND_ARG_INFO(0, faultactor)
+       ZEND_ARG_INFO(0, detail)
+       ZEND_ARG_INFO(0, faultname)
+       ZEND_ARG_INFO(0, headerfault)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapvar_soapvar, 0, 0, 2)
+       ZEND_ARG_INFO(0, data)
+       ZEND_ARG_INFO(0, encoding)
+       ZEND_ARG_INFO(0, type_name)
+       ZEND_ARG_INFO(0, type_namespace)
+       ZEND_ARG_INFO(0, node_name)
+       ZEND_ARG_INFO(0, node_namespace)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapserver_fault, 0, 0, 2)
+       ZEND_ARG_INFO(0, code)
+       ZEND_ARG_INFO(0, string)
+       ZEND_ARG_INFO(0, actor)
+       ZEND_ARG_INFO(0, details)
+       ZEND_ARG_INFO(0, name)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapserver_addsoapheader, 0, 0, 1)
+       ZEND_ARG_INFO(0, object)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapserver_soapserver, 0, 0, 1)
+       ZEND_ARG_INFO(0, wsdl)
+       ZEND_ARG_INFO(0, options)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapserver_setpersistence, 0, 0, 1)
+       ZEND_ARG_INFO(0, mode)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapserver_setclass, 0, 0, 1)
+       ZEND_ARG_INFO(0, class_name)
+       ZEND_ARG_INFO(0, args)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapserver_setobject, 0, 0, 1)
+       ZEND_ARG_INFO(0, object)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO(arginfo_soapserver_getfunctions, 0)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapserver_addfunction, 0, 0, 1)
+       ZEND_ARG_INFO(0, functions)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapserver_handle, 0, 0, 0)
+       ZEND_ARG_INFO(0, soap_request)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient_soapclient, 0, 0, 1)
+       ZEND_ARG_INFO(0, wsdl)
+       ZEND_ARG_INFO(0, options)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___call, 0, 0, 2)
+       ZEND_ARG_INFO(0, function_name)
+       ZEND_ARG_INFO(0, arguments)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___soapcall, 0, 0, 2)
+       ZEND_ARG_INFO(0, function_name)
+       ZEND_ARG_INFO(0, arguments)
+       ZEND_ARG_INFO(0, options)
+       ZEND_ARG_INFO(0, input_headers)
+       ZEND_ARG_INFO(1, output_headers)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO(arginfo_soapclient___getfunctions, 0)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO(arginfo_soapclient___gettypes, 0)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO(arginfo_soapclient___getlastrequest, 0)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO(arginfo_soapclient___getlastresponse, 0)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO(arginfo_soapclient___getlastrequestheaders, 0)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO(arginfo_soapclient___getlastresponseheaders, 0)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___dorequest, 0, 0, 4)
+       ZEND_ARG_INFO(0, request)
+       ZEND_ARG_INFO(0, location)
+       ZEND_ARG_INFO(0, action)
+       ZEND_ARG_INFO(0, version)
+       ZEND_ARG_INFO(0, one_way)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___setcookie, 0, 0, 1)
+       ZEND_ARG_INFO(0, name)
+       ZEND_ARG_INFO(0, value)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___setsoapheaders, 0, 0, 1)
+       ZEND_ARG_INFO(0, soapheaders)
+ZEND_END_ARG_INFO()
+
+static
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___setlocation, 0, 0, 0)
+       ZEND_ARG_INFO(0, new_location)
+ZEND_END_ARG_INFO()
+
+static 
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soap_use_soap_error_handler, 0, 0, 0)
+       ZEND_ARG_INFO(0, handler)
+ZEND_END_ARG_INFO()
+
+static 
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soap_is_soap_fault, 0, 0, 1)
+       ZEND_ARG_INFO(0, object)
+ZEND_END_ARG_INFO()
+#else
+unsigned char arginfo_soapclient___call[] = { 2, BYREF_NONE, BYREF_NONE };
+unsigned char arginfo_soapclient___soapcall[] = { 5, BYREF_NONE, BYREF_NONE, 
BYREF_NONE, BYREF_NONE, BYREF_FORCE };
+# define arginfo_soapclient_soapclient                                         
NULL
+# define arginfo_soapclient___getlastrequest                   NULL
+# define arginfo_soapclient___getlastresponse                  NULL
+# define arginfo_soapclient___getlastrequestheaders    NULL
+# define arginfo_soapclient___getlastresponseheaders   NULL
+# define arginfo_soapclient___getfunctions                             NULL
+# define arginfo_soapclient___gettypes                                 NULL
+# define arginfo_soapclient___dorequest                                        
NULL
+# define arginfo_soapclient___setcookie                                        
NULL
+# define arginfo_soapclient___setlocation                              NULL
+# define arginfo_soapclient___setsoapheaders                   NULL
+
+# define arginfo_soapserver_soapserver                                 NULL
+# define arginfo_soapserver_setpersistence                             NULL
+# define arginfo_soapserver_setclass                                   NULL
+# define arginfo_soapserver_setobject                                  NULL
+# define arginfo_soapserver_addfunction                                        
NULL
+# define arginfo_soapserver_getfunctions                               NULL
+# defina arginfo_soapserver_handle                                             
NULL
+# define arginfo_soapserver_fault                                              
NULL
+# define arginfo_soapserver_addsoapheader                              NULL
+
+# define arginfo_soapvar_soapvar                                               
NULL
+
+# define arginfo_soapfault_soapfault                                   NULL
+
+# define arginfo_soapheader_soapheader                                 NULL
+
+# define arginfo_soapparam_soapparam                                   NULL
+
+# define arginfo_soap_use_soap_error_handler                   NULL
+
+# define arginfo_soap_is_soap_fault                                            
NULL
+#endif
+/* }}} */
+
 static const zend_function_entry soap_functions[] = {
-       PHP_FE(use_soap_error_handler, NULL)
-       PHP_FE(is_soap_fault, NULL)
+       PHP_FE(use_soap_error_handler,  arginfo_soap_use_soap_error_handler)
+       PHP_FE(is_soap_fault,                   arginfo_soap_is_soap_fault)
        {NULL, NULL, NULL}
 };
 
 static const zend_function_entry soap_fault_functions[] = {
-       SOAP_CTOR(SoapFault, SoapFault, NULL, 0)
+       SOAP_CTOR(SoapFault, SoapFault, arginfo_soapfault_soapfault, 0)
 #ifdef ZEND_ENGINE_2
        PHP_ME(SoapFault, __toString, NULL, 0)
 #endif
@@ -292,64 +497,47 @@
 };
 
 static const zend_function_entry soap_server_functions[] = {
-       SOAP_CTOR(SoapServer, SoapServer, NULL, 0)
-       PHP_ME(SoapServer, setPersistence, NULL, 0)
-       PHP_ME(SoapServer, setClass, NULL, 0)
-       PHP_ME(SoapServer, setObject, NULL, 0)
-       PHP_ME(SoapServer, addFunction, NULL, 0)
-       PHP_ME(SoapServer, getFunctions, NULL, 0)
-       PHP_ME(SoapServer, handle, NULL, 0)
-       PHP_ME(SoapServer, fault, NULL, 0)
-       PHP_ME(SoapServer, addSoapHeader, NULL, 0)
+       SOAP_CTOR(SoapServer, SoapServer,       arginfo_soapserver_soapserver, 
0)
+       PHP_ME(SoapServer, setPersistence,      
arginfo_soapserver_setpersistence, 0)
+       PHP_ME(SoapServer, setClass,            arginfo_soapserver_setclass, 0)
+       PHP_ME(SoapServer, setObject,           arginfo_soapserver_setobject, 0)
+       PHP_ME(SoapServer, addFunction,         arginfo_soapserver_addfunction, 
0)
+       PHP_ME(SoapServer, getFunctions,        
arginfo_soapserver_getfunctions, 0)
+       PHP_ME(SoapServer, handle,                      
arginfo_soapserver_handle, 0)
+       PHP_ME(SoapServer, fault,                       
arginfo_soapserver_fault, 0)
+       PHP_ME(SoapServer, addSoapHeader,       
arginfo_soapserver_addsoapheader, 0)
        {NULL, NULL, NULL}
 };
 
-#ifdef ZEND_ENGINE_2
-ZEND_BEGIN_ARG_INFO(__call_args, 0)
-       ZEND_ARG_PASS_INFO(0)
-       ZEND_ARG_PASS_INFO(0)
-ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO_EX(__soap_call_args, 0, 0, 2)
-       ZEND_ARG_INFO(0, function_name)
-       ZEND_ARG_INFO(0, arguments)
-       ZEND_ARG_INFO(0, options)
-       ZEND_ARG_INFO(0, input_headers)
-       ZEND_ARG_INFO(1, output_headers)
-ZEND_END_ARG_INFO()
-#else
-unsigned char __call_args[] = { 2, BYREF_NONE, BYREF_NONE };
-unsigned char __soap_call_args[] = { 5, BYREF_NONE, BYREF_NONE, BYREF_NONE, 
BYREF_NONE, BYREF_FORCE };
-#endif
-
 static const zend_function_entry soap_client_functions[] = {
-       SOAP_CTOR(SoapClient, SoapClient, NULL, 0)
-       PHP_ME(SoapClient, __call, __call_args, 0)
-       ZEND_NAMED_ME(__soapCall, ZEND_MN(SoapClient___call), __soap_call_args, 
0)
-       PHP_ME(SoapClient, __getLastRequest, NULL, 0)
-       PHP_ME(SoapClient, __getLastResponse, NULL, 0)
-       PHP_ME(SoapClient, __getLastRequestHeaders, NULL, 0)
-       PHP_ME(SoapClient, __getLastResponseHeaders, NULL, 0)
-       PHP_ME(SoapClient, __getFunctions, NULL, 0)
-       PHP_ME(SoapClient, __getTypes, NULL, 0)
-       PHP_ME(SoapClient, __doRequest, NULL, 0)
-       PHP_ME(SoapClient, __setCookie, NULL, 0)
-       PHP_ME(SoapClient, __setLocation, NULL, 0)
-       PHP_ME(SoapClient, __setSoapHeaders, NULL, 0)
+       SOAP_CTOR(SoapClient, SoapClient, arginfo_soapclient_soapclient, 0)
+       PHP_ME(SoapClient, __call,                                              
arginfo_soapclient___call, 0)
+       ZEND_NAMED_ME(__soapCall, ZEND_MN(SoapClient___call), 
arginfo_soapclient___soapcall, 0)
+       PHP_ME(SoapClient, __getLastRequest,                    
arginfo_soapclient___getlastrequest, 0)
+       PHP_ME(SoapClient, __getLastResponse,                   
arginfo_soapclient___getlastresponse, 0)
+       PHP_ME(SoapClient, __getLastRequestHeaders,     
arginfo_soapclient___getlastrequestheaders, 0)
+       PHP_ME(SoapClient, __getLastResponseHeaders,    
arginfo_soapclient___getlastresponseheaders, 0)
+       PHP_ME(SoapClient, __getFunctions,                              
arginfo_soapclient___getfunctions, 0)
+       PHP_ME(SoapClient, __getTypes,                                  
arginfo_soapclient___gettypes, 0)
+       PHP_ME(SoapClient, __doRequest,                                 
arginfo_soapclient___dorequest, 0)
+       PHP_ME(SoapClient, __setCookie,                                 
arginfo_soapclient___setcookie, 0)
+       PHP_ME(SoapClient, __setLocation,                               
arginfo_soapclient___setlocation, 0)
+       PHP_ME(SoapClient, __setSoapHeaders,                    
arginfo_soapclient___setsoapheaders, 0)
        {NULL, NULL, NULL}
 };
 
 static const zend_function_entry soap_var_functions[] = {
-       SOAP_CTOR(SoapVar, SoapVar, NULL, 0)
+       SOAP_CTOR(SoapVar, SoapVar, arginfo_soapvar_soapvar, 0)
        {NULL, NULL, NULL}
 };
 
 static const zend_function_entry soap_param_functions[] = {
-       SOAP_CTOR(SoapParam, SoapParam, NULL, 0)
+       SOAP_CTOR(SoapParam, SoapParam, arginfo_soapparam_soapparam, 0)
        {NULL, NULL, NULL}
 };
 
 static const zend_function_entry soap_header_functions[] = {
-       SOAP_CTOR(SoapHeader, SoapHeader, NULL, 0)
+       SOAP_CTOR(SoapHeader, SoapHeader, arginfo_soapheader_soapheader, 0)
        {NULL, NULL, NULL}
 };
 
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/any.phpt?r1=1.1.2.2.2.1.2.3&r2=1.1.2.2.2.1.2.4&diff_format=u
Index: php-src/ext/soap/tests/any.phpt
diff -u php-src/ext/soap/tests/any.phpt:1.1.2.2.2.1.2.3 
php-src/ext/soap/tests/any.phpt:1.1.2.2.2.1.2.4
--- php-src/ext/soap/tests/any.phpt:1.1.2.2.2.1.2.3     Sat May 24 15:22:18 2008
+++ php-src/ext/soap/tests/any.phpt     Tue Jul 22 01:47:21 2008
@@ -35,7 +35,7 @@
     $this->server->addFunction('echoAnyElement');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/classmap002.phpt?r1=1.3.6.1&r2=1.3.6.2&diff_format=u
Index: php-src/ext/soap/tests/classmap002.phpt
diff -u php-src/ext/soap/tests/classmap002.phpt:1.3.6.1 
php-src/ext/soap/tests/classmap002.phpt:1.3.6.2
--- php-src/ext/soap/tests/classmap002.phpt:1.3.6.1     Wed Jan  9 16:45:47 2008
+++ php-src/ext/soap/tests/classmap002.phpt     Tue Jul 22 01:47:21 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient{
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
                return <<<EOF
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://schemas.nothing.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:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/";><SOAP-ENV:Body>
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/classmap003.phpt?r1=1.1.2.2.4.1&r2=1.1.2.2.4.2&diff_format=u
Index: php-src/ext/soap/tests/classmap003.phpt
diff -u php-src/ext/soap/tests/classmap003.phpt:1.1.2.2.4.1 
php-src/ext/soap/tests/classmap003.phpt:1.1.2.2.4.2
--- php-src/ext/soap/tests/classmap003.phpt:1.1.2.2.4.1 Sat May 24 15:22:18 2008
+++ php-src/ext/soap/tests/classmap003.phpt     Tue Jul 22 01:47:21 2008
@@ -33,7 +33,7 @@
     $this->server->addFunction("f");
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/classmap004.phpt?r1=1.1.4.3&r2=1.1.4.4&diff_format=u
Index: php-src/ext/soap/tests/classmap004.phpt
diff -u php-src/ext/soap/tests/classmap004.phpt:1.1.4.3 
php-src/ext/soap/tests/classmap004.phpt:1.1.4.4
--- php-src/ext/soap/tests/classmap004.phpt:1.1.4.3     Sat May 24 15:22:18 2008
+++ php-src/ext/soap/tests/classmap004.phpt     Tue Jul 22 01:47:21 2008
@@ -41,7 +41,7 @@
     $this->server->addFunction("f");
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/transport001.phpt?r1=1.2&r2=1.2.6.1&diff_format=u
Index: php-src/ext/soap/tests/transport001.phpt
diff -u php-src/ext/soap/tests/transport001.phpt:1.2 
php-src/ext/soap/tests/transport001.phpt:1.2.6.1
--- php-src/ext/soap/tests/transport001.phpt:1.2        Mon Sep 13 11:55:24 2004
+++ php-src/ext/soap/tests/transport001.phpt    Tue Jul 22 01:47:21 2008
@@ -16,7 +16,7 @@
     $this->server->addFunction('Add');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap003.phpt?r1=1.1.2.1.2.1&r2=1.1.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/typemap003.phpt
diff -u php-src/ext/soap/tests/typemap003.phpt:1.1.2.1.2.1 
php-src/ext/soap/tests/typemap003.phpt:1.1.2.1.2.2
--- php-src/ext/soap/tests/typemap003.phpt:1.1.2.1.2.1  Wed Jan  9 16:45:47 2008
+++ php-src/ext/soap/tests/typemap003.phpt      Tue Jul 22 01:47:21 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient{
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
                return <<<EOF
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://schemas.nothing.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:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/";><SOAP-ENV:Body>
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap004.phpt?r1=1.1.2.1.2.1&r2=1.1.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/typemap004.phpt
diff -u php-src/ext/soap/tests/typemap004.phpt:1.1.2.1.2.1 
php-src/ext/soap/tests/typemap004.phpt:1.1.2.1.2.2
--- php-src/ext/soap/tests/typemap004.phpt:1.1.2.1.2.1  Wed Jan  9 16:45:47 2008
+++ php-src/ext/soap/tests/typemap004.phpt      Tue Jul 22 01:47:21 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient{
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
                echo $request;
                exit;
        }       
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap007.phpt?r1=1.1.2.1.2.1&r2=1.1.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/typemap007.phpt
diff -u php-src/ext/soap/tests/typemap007.phpt:1.1.2.1.2.1 
php-src/ext/soap/tests/typemap007.phpt:1.1.2.1.2.2
--- php-src/ext/soap/tests/typemap007.phpt:1.1.2.1.2.1  Wed Jan  9 16:45:47 2008
+++ php-src/ext/soap/tests/typemap007.phpt      Tue Jul 22 01:47:21 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient{
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
                return <<<EOF
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://schemas.nothing.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:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/";><SOAP-ENV:Body>
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap008.phpt?r1=1.1.2.1.2.1&r2=1.1.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/typemap008.phpt
diff -u php-src/ext/soap/tests/typemap008.phpt:1.1.2.1.2.1 
php-src/ext/soap/tests/typemap008.phpt:1.1.2.1.2.2
--- php-src/ext/soap/tests/typemap008.phpt:1.1.2.1.2.1  Wed Jan  9 16:45:47 2008
+++ php-src/ext/soap/tests/typemap008.phpt      Tue Jul 22 01:47:21 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient{
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
                echo $request;
                exit;
        }       
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap011.phpt?r1=1.1.2.1.2.1&r2=1.1.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/typemap011.phpt
diff -u php-src/ext/soap/tests/typemap011.phpt:1.1.2.1.2.1 
php-src/ext/soap/tests/typemap011.phpt:1.1.2.1.2.2
--- php-src/ext/soap/tests/typemap011.phpt:1.1.2.1.2.1  Wed Jan  9 16:45:47 2008
+++ php-src/ext/soap/tests/typemap011.phpt      Tue Jul 22 01:47:21 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient{
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
                return <<<EOF
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://schemas.nothing.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:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/";><SOAP-ENV:Body>
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/typemap012.phpt?r1=1.1.2.1.2.1&r2=1.1.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/typemap012.phpt
diff -u php-src/ext/soap/tests/typemap012.phpt:1.1.2.1.2.1 
php-src/ext/soap/tests/typemap012.phpt:1.1.2.1.2.2
--- php-src/ext/soap/tests/typemap012.phpt:1.1.2.1.2.1  Wed Jan  9 16:45:47 2008
+++ php-src/ext/soap/tests/typemap012.phpt      Tue Jul 22 01:47:21 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient{
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
                echo $request;
                exit;
        }       
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug28969.phpt?r1=1.2.6.1&r2=1.2.6.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug28969.phpt
diff -u php-src/ext/soap/tests/bugs/bug28969.phpt:1.2.6.1 
php-src/ext/soap/tests/bugs/bug28969.phpt:1.2.6.2
--- php-src/ext/soap/tests/bugs/bug28969.phpt:1.2.6.1   Sat May 24 15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug28969.phpt   Tue Jul 22 01:47:22 2008
@@ -17,7 +17,7 @@
     $this->server->addFunction('test');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug29795.phpt?r1=1.3.6.2&r2=1.3.6.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug29795.phpt
diff -u php-src/ext/soap/tests/bugs/bug29795.phpt:1.3.6.2 
php-src/ext/soap/tests/bugs/bug29795.phpt:1.3.6.3
--- php-src/ext/soap/tests/bugs/bug29795.phpt:1.3.6.2   Sat May 24 15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug29795.phpt   Tue Jul 22 01:47:22 2008
@@ -12,7 +12,7 @@
     parent::__construct($wsdl, $options);
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     return <<<EOF
 <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope 
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
 xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"; 
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug29839.phpt?r1=1.3.4.1.2.2&r2=1.3.4.1.2.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug29839.phpt
diff -u php-src/ext/soap/tests/bugs/bug29839.phpt:1.3.4.1.2.2 
php-src/ext/soap/tests/bugs/bug29839.phpt:1.3.4.1.2.3
--- php-src/ext/soap/tests/bugs/bug29839.phpt:1.3.4.1.2.2       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug29839.phpt   Tue Jul 22 01:47:22 2008
@@ -19,7 +19,7 @@
     $this->server->addFunction('EchoString');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug29844.phpt?r1=1.3.6.2&r2=1.3.6.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug29844.phpt
diff -u php-src/ext/soap/tests/bugs/bug29844.phpt:1.3.6.2 
php-src/ext/soap/tests/bugs/bug29844.phpt:1.3.6.3
--- php-src/ext/soap/tests/bugs/bug29844.phpt:1.3.6.2   Sat May 24 15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug29844.phpt   Tue Jul 22 01:47:22 2008
@@ -21,7 +21,7 @@
     $this->server->setClass('hello_world');;
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug30045.phpt?r1=1.3.2.1.4.2&r2=1.3.2.1.4.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug30045.phpt
diff -u php-src/ext/soap/tests/bugs/bug30045.phpt:1.3.2.1.4.2 
php-src/ext/soap/tests/bugs/bug30045.phpt:1.3.2.1.4.3
--- php-src/ext/soap/tests/bugs/bug30045.phpt:1.3.2.1.4.2       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug30045.phpt   Tue Jul 22 01:47:22 2008
@@ -22,7 +22,7 @@
     $this->server->addFunction('foo');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     $xml = simplexml_load_string($request);
     echo 
$xml->children("http://schemas.xmlsoap.org/soap/envelope/";)->Body->children("http://test-uri";)->children()->param1->asXML(),"\n";
     unset($xml);
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug30106.phpt?r1=1.2.4.1.2.1&r2=1.2.4.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug30106.phpt
diff -u php-src/ext/soap/tests/bugs/bug30106.phpt:1.2.4.1.2.1 
php-src/ext/soap/tests/bugs/bug30106.phpt:1.2.4.1.2.2
--- php-src/ext/soap/tests/bugs/bug30106.phpt:1.2.4.1.2.1       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug30106.phpt   Tue Jul 22 01:47:22 2008
@@ -19,7 +19,7 @@
                $this->server->addFunction("getContinentList"); 
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
        echo $request;
     ob_start();
     $this->server->handle($request);
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug30175.phpt?r1=1.2.6.1&r2=1.2.6.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug30175.phpt
diff -u php-src/ext/soap/tests/bugs/bug30175.phpt:1.2.6.1 
php-src/ext/soap/tests/bugs/bug30175.phpt:1.2.6.2
--- php-src/ext/soap/tests/bugs/bug30175.phpt:1.2.6.1   Sat May 24 15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug30175.phpt   Tue Jul 22 01:47:22 2008
@@ -9,7 +9,7 @@
 
 class LocalSoapClient extends SoapClient {
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     return <<<EOF
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug30928.phpt?r1=1.2.4.1.2.2&r2=1.2.4.1.2.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug30928.phpt
diff -u php-src/ext/soap/tests/bugs/bug30928.phpt:1.2.4.1.2.2 
php-src/ext/soap/tests/bugs/bug30928.phpt:1.2.4.1.2.3
--- php-src/ext/soap/tests/bugs/bug30928.phpt:1.2.4.1.2.2       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug30928.phpt   Tue Jul 22 01:47:22 2008
@@ -24,7 +24,7 @@
     $this->server->addFunction('test');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug31695.phpt?r1=1.2.4.1.2.1&r2=1.2.4.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug31695.phpt
diff -u php-src/ext/soap/tests/bugs/bug31695.phpt:1.2.4.1.2.1 
php-src/ext/soap/tests/bugs/bug31695.phpt:1.2.4.1.2.2
--- php-src/ext/soap/tests/bugs/bug31695.phpt:1.2.4.1.2.1       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug31695.phpt   Tue Jul 22 01:47:22 2008
@@ -17,7 +17,7 @@
                $this->server->addFunction("Test"); 
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
        echo "$location\n";
     ob_start();
     $this->server->handle($request);
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug32776.phpt?r1=1.2.4.1.2.2&r2=1.2.4.1.2.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug32776.phpt
diff -u php-src/ext/soap/tests/bugs/bug32776.phpt:1.2.4.1.2.2 
php-src/ext/soap/tests/bugs/bug32776.phpt:1.2.4.1.2.3
--- php-src/ext/soap/tests/bugs/bug32776.phpt:1.2.4.1.2.2       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug32776.phpt   Tue Jul 22 01:47:22 2008
@@ -22,7 +22,7 @@
     $this->server->addFunction('test');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug32941.phpt?r1=1.2&r2=1.2.6.1&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug32941.phpt
diff -u php-src/ext/soap/tests/bugs/bug32941.phpt:1.2 
php-src/ext/soap/tests/bugs/bug32941.phpt:1.2.6.1
--- php-src/ext/soap/tests/bugs/bug32941.phpt:1.2       Wed Jun  1 14:43:13 2005
+++ php-src/ext/soap/tests/bugs/bug32941.phpt   Tue Jul 22 01:47:22 2008
@@ -5,7 +5,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient {
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
        return <<<EOF
 <?xml version="1.0" encoding="UTF-8"?>
 <soapenv:Envelope
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug34449.phpt?r1=1.1.2.3.2.1.2.1&r2=1.1.2.3.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug34449.phpt
diff -u php-src/ext/soap/tests/bugs/bug34449.phpt:1.1.2.3.2.1.2.1 
php-src/ext/soap/tests/bugs/bug34449.phpt:1.1.2.3.2.1.2.2
--- php-src/ext/soap/tests/bugs/bug34449.phpt:1.1.2.3.2.1.2.1   Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug34449.phpt   Tue Jul 22 01:47:22 2008
@@ -5,7 +5,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient {
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
        echo "$request\n";
        exit;
   }
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug34453.phpt?r1=1.1.2.2.2.1.2.2&r2=1.1.2.2.2.1.2.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug34453.phpt
diff -u php-src/ext/soap/tests/bugs/bug34453.phpt:1.1.2.2.2.1.2.2 
php-src/ext/soap/tests/bugs/bug34453.phpt:1.1.2.2.2.1.2.3
--- php-src/ext/soap/tests/bugs/bug34453.phpt:1.1.2.2.2.1.2.2   Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug34453.phpt   Tue Jul 22 01:47:22 2008
@@ -19,7 +19,7 @@
     $this->server->addFunction('EchoString');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug34643.phpt?r1=1.1.2.3.4.1&r2=1.1.2.3.4.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug34643.phpt
diff -u php-src/ext/soap/tests/bugs/bug34643.phpt:1.1.2.3.4.1 
php-src/ext/soap/tests/bugs/bug34643.phpt:1.1.2.3.4.2
--- php-src/ext/soap/tests/bugs/bug34643.phpt:1.1.2.3.4.1       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug34643.phpt   Tue Jul 22 01:47:22 2008
@@ -22,7 +22,7 @@
     $this->server->setClass('fp');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug35142.phpt?r1=1.1.2.2.2.1.2.1&r2=1.1.2.2.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug35142.phpt
diff -u php-src/ext/soap/tests/bugs/bug35142.phpt:1.1.2.2.2.1.2.1 
php-src/ext/soap/tests/bugs/bug35142.phpt:1.1.2.2.2.1.2.2
--- php-src/ext/soap/tests/bugs/bug35142.phpt:1.1.2.2.2.1.2.1   Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug35142.phpt   Tue Jul 22 01:47:22 2008
@@ -24,7 +24,7 @@
     $this->server->addFunction('PostEvents');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
                echo "$request\n";
     $this->server->handle($request);
     return $response;
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug35273.phpt?r1=1.1.2.2.2.2.2.1&r2=1.1.2.2.2.2.2.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug35273.phpt
diff -u php-src/ext/soap/tests/bugs/bug35273.phpt:1.1.2.2.2.2.2.1 
php-src/ext/soap/tests/bugs/bug35273.phpt:1.1.2.2.2.2.2.2
--- php-src/ext/soap/tests/bugs/bug35273.phpt:1.1.2.2.2.2.2.1   Wed Jan  9 
16:45:47 2008
+++ php-src/ext/soap/tests/bugs/bug35273.phpt   Tue Jul 22 01:47:22 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient {
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
        echo $request;
        exit;
        }
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug36226-2.phpt?r1=1.1.2.1&r2=1.1.2.1.2.1&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug36226-2.phpt
diff -u php-src/ext/soap/tests/bugs/bug36226-2.phpt:1.1.2.1 
php-src/ext/soap/tests/bugs/bug36226-2.phpt:1.1.2.1.2.1
--- php-src/ext/soap/tests/bugs/bug36226-2.phpt:1.1.2.1 Tue Mar 20 07:51:32 2007
+++ php-src/ext/soap/tests/bugs/bug36226-2.phpt Tue Jul 22 01:47:22 2008
@@ -20,7 +20,7 @@
     $this->server->addFunction('PostEvents');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     echo "$request\n";
     $this->server->handle($request);
     return $response;
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug36226.phpt?r1=1.1.2.2.2.1.2.1&r2=1.1.2.2.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug36226.phpt
diff -u php-src/ext/soap/tests/bugs/bug36226.phpt:1.1.2.2.2.1.2.1 
php-src/ext/soap/tests/bugs/bug36226.phpt:1.1.2.2.2.1.2.2
--- php-src/ext/soap/tests/bugs/bug36226.phpt:1.1.2.2.2.1.2.1   Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug36226.phpt   Tue Jul 22 01:47:22 2008
@@ -24,7 +24,7 @@
     $this->server->addFunction('PostEvents');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
                echo "$request\n";
     $this->server->handle($request);
     return $response;
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug36999.phpt?r1=1.1.2.1.2.1&r2=1.1.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug36999.phpt
diff -u php-src/ext/soap/tests/bugs/bug36999.phpt:1.1.2.1.2.1 
php-src/ext/soap/tests/bugs/bug36999.phpt:1.1.2.1.2.2
--- php-src/ext/soap/tests/bugs/bug36999.phpt:1.1.2.1.2.1       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug36999.phpt   Tue Jul 22 01:47:22 2008
@@ -21,7 +21,7 @@
     $this->server->addFunction('echoLong');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug37083.phpt?r1=1.1.2.2.4.1&r2=1.1.2.2.4.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug37083.phpt
diff -u php-src/ext/soap/tests/bugs/bug37083.phpt:1.1.2.2.4.1 
php-src/ext/soap/tests/bugs/bug37083.phpt:1.1.2.2.4.2
--- php-src/ext/soap/tests/bugs/bug37083.phpt:1.1.2.2.4.1       Wed Jan  9 
16:45:47 2008
+++ php-src/ext/soap/tests/bugs/bug37083.phpt   Tue Jul 22 01:47:22 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class TestSoapClient extends SoapClient {
-       function __doRequest($request, $location, $action, $version) {
+       function __doRequest($request, $location, $action, $version, $one_way = 
0) {
                return <<<EOF
 <?xml version="1.0" encoding="utf-8"?>
 <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug38004.phpt?r1=1.1.2.2.2.2&r2=1.1.2.2.2.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug38004.phpt
diff -u php-src/ext/soap/tests/bugs/bug38004.phpt:1.1.2.2.2.2 
php-src/ext/soap/tests/bugs/bug38004.phpt:1.1.2.2.2.3
--- php-src/ext/soap/tests/bugs/bug38004.phpt:1.1.2.2.2.2       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug38004.phpt   Tue Jul 22 01:47:22 2008
@@ -19,7 +19,7 @@
     $this->server->addFunction('Test');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug38005.phpt?r1=1.1.2.1.2.2&r2=1.1.2.1.2.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug38005.phpt
diff -u php-src/ext/soap/tests/bugs/bug38005.phpt:1.1.2.1.2.2 
php-src/ext/soap/tests/bugs/bug38005.phpt:1.1.2.1.2.3
--- php-src/ext/soap/tests/bugs/bug38005.phpt:1.1.2.1.2.2       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug38005.phpt   Tue Jul 22 01:47:22 2008
@@ -17,7 +17,7 @@
     $this->server->addFunction('Test');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug38055.phpt?r1=1.1.2.1.2.2&r2=1.1.2.1.2.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug38055.phpt
diff -u php-src/ext/soap/tests/bugs/bug38055.phpt:1.1.2.1.2.2 
php-src/ext/soap/tests/bugs/bug38055.phpt:1.1.2.1.2.3
--- php-src/ext/soap/tests/bugs/bug38055.phpt:1.1.2.1.2.2       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug38055.phpt   Tue Jul 22 01:47:22 2008
@@ -20,7 +20,7 @@
     $this->server->addFunction('Test');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug38067.phpt?r1=1.1.2.1.2.2&r2=1.1.2.1.2.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug38067.phpt
diff -u php-src/ext/soap/tests/bugs/bug38067.phpt:1.1.2.1.2.2 
php-src/ext/soap/tests/bugs/bug38067.phpt:1.1.2.1.2.3
--- php-src/ext/soap/tests/bugs/bug38067.phpt:1.1.2.1.2.2       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug38067.phpt   Tue Jul 22 01:47:22 2008
@@ -19,7 +19,7 @@
     $this->server->addFunction('Test');
   }
 
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     ob_start();
     $this->server->handle($request);
     $response = ob_get_contents();
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug38536.phpt?r1=1.1.2.1&r2=1.1.2.1.2.1&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug38536.phpt
diff -u php-src/ext/soap/tests/bugs/bug38536.phpt:1.1.2.1 
php-src/ext/soap/tests/bugs/bug38536.phpt:1.1.2.1.2.1
--- php-src/ext/soap/tests/bugs/bug38536.phpt:1.1.2.1   Wed Nov  8 10:05:19 2006
+++ php-src/ext/soap/tests/bugs/bug38536.phpt   Tue Jul 22 01:47:22 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class LocalSoapClient extends SoapClient {
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     return <<<EOF
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug39121.phpt?r1=1.1.2.1.2.1&r2=1.1.2.1.2.2&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug39121.phpt
diff -u php-src/ext/soap/tests/bugs/bug39121.phpt:1.1.2.1.2.1 
php-src/ext/soap/tests/bugs/bug39121.phpt:1.1.2.1.2.2
--- php-src/ext/soap/tests/bugs/bug39121.phpt:1.1.2.1.2.1       Sat May 24 
15:22:18 2008
+++ php-src/ext/soap/tests/bugs/bug39121.phpt   Tue Jul 22 01:47:22 2008
@@ -7,7 +7,7 @@
 --FILE--
 <?php
 class LocalSoapClient extends SoapClient {
-  function __doRequest($request, $location, $action, $version) {
+  function __doRequest($request, $location, $action, $version, $one_way = 0) {
     return <<<EOF
 <?xml version="1.0" encoding="UTF-8"?>
 <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"; 
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";>
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/tests/bugs/bug42692.phpt?r1=1.1.4.2&r2=1.1.4.3&diff_format=u
Index: php-src/ext/soap/tests/bugs/bug42692.phpt
diff -u php-src/ext/soap/tests/bugs/bug42692.phpt:1.1.4.2 
php-src/ext/soap/tests/bugs/bug42692.phpt:1.1.4.3
--- php-src/ext/soap/tests/bugs/bug42692.phpt:1.1.4.2   Tue Nov 13 15:10:16 2007
+++ php-src/ext/soap/tests/bugs/bug42692.phpt   Tue Jul 22 01:47:22 2008
@@ -16,7 +16,7 @@
                $this->server->addFunction("checkAuth");
        }
 
-       function __doRequest($request, $location, $action, $version) {
+       function __doRequest($request, $location, $action, $version, $one_way = 
0) {
                ob_start();
                $this->server->handle($request);
                $response = ob_get_contents();

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to