dmitry          Sun Oct  9 07:06:10 2005 EDT

  Modified files:              
    /php-src/ext/soap   php_encoding.c 
    /php-src/ext/soap/tests/bugs        bug30928.phpt 
    /php-src/ext/soap/tests/interop/Round2/Base r2_base_003p.phpt 
                                                r2_base_003s.phpt 
                                                r2_base_003w.phpt 
                                                r2_base_009p.phpt 
                                                r2_base_009s.phpt 
                                                r2_base_009w.phpt 
    /php-src/ext/soap/tests/interop/Round3/GroupE       
                                                        
r3_groupE_list_001w.phpt 
                                                        
r3_groupE_list_002w.phpt 
                                                        
r3_groupE_list_003w.phpt 
                                                        
r3_groupE_list_004w.phpt 
    /php-src/ext/soap/tests/interop/Round4/GroupH       
                                                        
r4_groupH_simple_rpcenc_001w.phpt 
                                                        
r4_groupH_simple_rpcenc_004w.phpt 
                                                        
r4_groupH_simple_rpcenc_007w.phpt 
    /php-src/ext/soap/tests/interop/Round4/GroupI       
                                                        r4_groupI_xsd_013w.phpt 
                                                        r4_groupI_xsd_015w.phpt 
    /php-src/ext/soap/tests/schema      schema062.phpt 
  Log:
  Fixed bug #34787 (SOAP Client not handling boolean types correctly)
  
  
http://cvs.php.net/diff.php/php-src/ext/soap/php_encoding.c?r1=1.110&r2=1.111&ty=u
Index: php-src/ext/soap/php_encoding.c
diff -u php-src/ext/soap/php_encoding.c:1.110 
php-src/ext/soap/php_encoding.c:1.111
--- php-src/ext/soap/php_encoding.c:1.110       Fri Oct  7 04:21:37 2005
+++ php-src/ext/soap/php_encoding.c     Sun Oct  9 07:06:09 2005
@@ -17,7 +17,7 @@
   |          Dmitry Stogov <[EMAIL PROTECTED]>                             |
   +----------------------------------------------------------------------+
 */
-/* $Id: php_encoding.c,v 1.110 2005/10/07 08:21:37 dmitry Exp $ */
+/* $Id: php_encoding.c,v 1.111 2005/10/09 11:06:09 dmitry Exp $ */
 
 #include <time.h>
 
@@ -113,7 +113,7 @@
 { \
        if (!zval || Z_TYPE_P(zval) == IS_NULL) { \
          if (style == SOAP_ENCODED) {\
-                       xmlSetProp(xml, "xsi:nil", "1"); \
+                       xmlSetProp(xml, "xsi:nil", "true"); \
                } \
                return xml; \
        } \
@@ -962,7 +962,7 @@
        ret = xmlNewNode(NULL,"BOGUS");
        xmlAddChild(parent, ret);
        if (style == SOAP_ENCODED) {
-               xmlSetProp(ret, "xsi:nil", "1");
+               xmlSetProp(ret, "xsi:nil", "true");
        }
        return ret;
 }
@@ -1334,10 +1334,10 @@
                                                        property = 
xmlNewNode(NULL,"BOGUS");
                                                        xmlAddChild(node, 
property);
                                                        if (style == 
SOAP_ENCODED) {
-                                                               
xmlSetProp(property, "xsi:nil", "1");
+                                                               
xmlSetProp(property, "xsi:nil", "true");
                                                        } else {
                                                          xmlNsPtr xsi = 
encode_add_ns(property,XSI_NAMESPACE);
-                                                               
xmlSetNsProp(property, xsi, "nil", "1");
+                                                               
xmlSetNsProp(property, xsi, "nil", "true");
                                                        }
                                                } else {
                                                        property = 
master_to_xml(enc, *val, style, node);
@@ -1360,10 +1360,10 @@
                                                property = 
xmlNewNode(NULL,"BOGUS");
                                                xmlAddChild(node, property);
                                                if (style == SOAP_ENCODED) {
-                                                       xmlSetProp(property, 
"xsi:nil", "1");
+                                                       xmlSetProp(property, 
"xsi:nil", "true");
                                                } else {
                                                  xmlNsPtr xsi = 
encode_add_ns(property,XSI_NAMESPACE);
-                                                       xmlSetNsProp(property, 
xsi, "nil", "1");
+                                                       xmlSetNsProp(property, 
xsi, "nil", "true");
                                                }
                                        } else {
                                                property = master_to_xml(enc, 
data, style, node);
@@ -1385,10 +1385,10 @@
                                property = 
xmlNewNode(NULL,model->u.element->name);
                                xmlAddChild(node, property);
                                if (style == SOAP_ENCODED) {
-                                       xmlSetProp(property, "xsi:nil", "1");
+                                       xmlSetProp(property, "xsi:nil", "true");
                                } else {
                                        xmlNsPtr xsi = 
encode_add_ns(property,XSI_NAMESPACE);
-                                       xmlSetNsProp(property, xsi, "nil", "1");
+                                       xmlSetNsProp(property, xsi, "nil", 
"true");
                                }
                                return 1;
                        } else if (model->min_occurs == 0) {
@@ -1518,7 +1518,7 @@
                xmlParam = xmlNewNode(NULL,"BOGUS");
                xmlAddChild(parent, xmlParam);
          if (style == SOAP_ENCODED) {
-                       xmlSetProp(xmlParam, "xsi:nil", "1");
+                       xmlSetProp(xmlParam, "xsi:nil", "true");
                }
                return xmlParam;
        }
@@ -1597,10 +1597,10 @@
                                                property = 
xmlNewNode(NULL,"BOGUS");
                                                xmlAddChild(xmlParam, property);
                                                if (style == SOAP_ENCODED) {
-                                                       xmlSetProp(property, 
"xsi:nil", "1");
+                                                       xmlSetProp(property, 
"xsi:nil", "true");
                                                } else {
                                                  xmlNsPtr xsi = 
encode_add_ns(property,XSI_NAMESPACE);
-                                                       xmlSetNsProp(property, 
xsi, "nil", "1");
+                                                       xmlSetNsProp(property, 
xsi, "nil", "true");
                                                }
                                        } else {
                                                property = 
master_to_xml(array_el->encode, *val, style, xmlParam);
http://cvs.php.net/diff.php/php-src/ext/soap/tests/bugs/bug30928.phpt?r1=1.2&r2=1.3&ty=u
Index: php-src/ext/soap/tests/bugs/bug30928.phpt
diff -u php-src/ext/soap/tests/bugs/bug30928.phpt:1.2 
php-src/ext/soap/tests/bugs/bug30928.phpt:1.3
--- php-src/ext/soap/tests/bugs/bug30928.phpt:1.2       Tue Dec  7 12:29:42 2004
+++ php-src/ext/soap/tests/bugs/bug30928.phpt   Sun Oct  9 07:06:09 2005
@@ -44,7 +44,7 @@
 echo "ok\n";
 ?>
 --EXPECTF--
-object(stdClass)#%d (3) {
+object(stdClass)#4 (3) {
   ["a"]=>
   string(1) "a"
   ["b"]=>
@@ -52,12 +52,12 @@
   ["c"]=>
   string(1) "c"
 }
-object(foo)#%d (3) {
+object(foo)#2 (3) {
   ["a"]=>
   string(1) "a"
-  ["b:private"]=>
+  ["b":"foo":private]=>
   string(1) "b"
-  ["c:protected"]=>
+  ["c":protected]=>
   string(1) "c"
 }
 ok
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round2/Base/r2_base_003p.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round2/Base/r2_base_003p.phpt
diff -u php-src/ext/soap/tests/interop/Round2/Base/r2_base_003p.phpt:1.1 
php-src/ext/soap/tests/interop/Round2/Base/r2_base_003p.phpt:1.2
--- php-src/ext/soap/tests/interop/Round2/Base/r2_base_003p.phpt:1.1    Sun Apr 
 3 11:51:18 2005
+++ php-src/ext/soap/tests/interop/Round2/Base/r2_base_003p.phpt        Sun Oct 
 9 07:06:09 2005
@@ -13,7 +13,7 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoString><param0
 xsi:nil="1"/></ns1:echoString></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoString><param0
 xsi:nil="true"/></ns1:echoString></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoStringResponse><outputString
 xsi:nil="1"/></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoStringResponse><outputString
 xsi:nil="true"/></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 ok
\ No newline at end of file
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round2/Base/r2_base_003s.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round2/Base/r2_base_003s.phpt
diff -u php-src/ext/soap/tests/interop/Round2/Base/r2_base_003s.phpt:1.1 
php-src/ext/soap/tests/interop/Round2/Base/r2_base_003s.phpt:1.2
--- php-src/ext/soap/tests/interop/Round2/Base/r2_base_003s.phpt:1.1    Sun Apr 
 3 11:51:18 2005
+++ php-src/ext/soap/tests/interop/Round2/Base/r2_base_003s.phpt        Sun Oct 
 9 07:06:09 2005
@@ -13,7 +13,7 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoString><inputString
 xsi:nil="1"/></ns1:echoString></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoString><inputString
 xsi:nil="true"/></ns1:echoString></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoStringResponse><outputString
 xsi:nil="1"/></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoStringResponse><outputString
 xsi:nil="true"/></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 ok
\ No newline at end of file
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round2/Base/r2_base_003w.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round2/Base/r2_base_003w.phpt
diff -u php-src/ext/soap/tests/interop/Round2/Base/r2_base_003w.phpt:1.1 
php-src/ext/soap/tests/interop/Round2/Base/r2_base_003w.phpt:1.2
--- php-src/ext/soap/tests/interop/Round2/Base/r2_base_003w.phpt:1.1    Sun Apr 
 3 11:51:18 2005
+++ php-src/ext/soap/tests/interop/Round2/Base/r2_base_003w.phpt        Sun Oct 
 9 07:06:09 2005
@@ -13,7 +13,7 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoString><inputString
 xsi:nil="1"/></ns1:echoString></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoString><inputString
 xsi:nil="true"/></ns1:echoString></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoStringResponse><outputString
 xsi:nil="1"/></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoStringResponse><outputString
 xsi:nil="true"/></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 ok
\ No newline at end of file
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round2/Base/r2_base_009p.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round2/Base/r2_base_009p.phpt
diff -u php-src/ext/soap/tests/interop/Round2/Base/r2_base_009p.phpt:1.1 
php-src/ext/soap/tests/interop/Round2/Base/r2_base_009p.phpt:1.2
--- php-src/ext/soap/tests/interop/Round2/Base/r2_base_009p.phpt:1.1    Sun Apr 
 3 11:51:19 2005
+++ php-src/ext/soap/tests/interop/Round2/Base/r2_base_009p.phpt        Sun Oct 
 9 07:06:09 2005
@@ -13,7 +13,7 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoStringArray><param0
 xsi:nil="1"/></ns1:echoStringArray></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
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:echoStringArray><param0
 xsi:nil="true"/></ns1:echoStringArray></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArrayResponse><outputStringArray
 xsi:nil="1" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArrayResponse><outputStringArray
 xsi:nil="true" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 ok
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round2/Base/r2_base_009s.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round2/Base/r2_base_009s.phpt
diff -u php-src/ext/soap/tests/interop/Round2/Base/r2_base_009s.phpt:1.1 
php-src/ext/soap/tests/interop/Round2/Base/r2_base_009s.phpt:1.2
--- php-src/ext/soap/tests/interop/Round2/Base/r2_base_009s.phpt:1.1    Sun Apr 
 3 11:51:19 2005
+++ php-src/ext/soap/tests/interop/Round2/Base/r2_base_009s.phpt        Sun Oct 
 9 07:06:09 2005
@@ -14,7 +14,7 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArray><inputStringArray
 xsi:nil="1" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArray></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArray><inputStringArray
 xsi:nil="true" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArray></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArrayResponse><outputStringArray
 xsi:nil="1" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArrayResponse><outputStringArray
 xsi:nil="true" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 ok
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round2/Base/r2_base_009w.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round2/Base/r2_base_009w.phpt
diff -u php-src/ext/soap/tests/interop/Round2/Base/r2_base_009w.phpt:1.1 
php-src/ext/soap/tests/interop/Round2/Base/r2_base_009w.phpt:1.2
--- php-src/ext/soap/tests/interop/Round2/Base/r2_base_009w.phpt:1.1    Sun Apr 
 3 11:51:19 2005
+++ php-src/ext/soap/tests/interop/Round2/Base/r2_base_009w.phpt        Sun Oct 
 9 07:06:09 2005
@@ -13,7 +13,7 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArray><inputStringArray
 xsi:nil="1" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArray></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArray><inputStringArray
 xsi:nil="true" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArray></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArrayResponse><outputStringArray
 xsi:nil="1" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoStringArrayResponse><outputStringArray
 xsi:nil="true" 
xsi:type="ns2:ArrayOfstring"/></ns1:echoStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 ok
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_001w.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_001w.phpt
diff -u 
php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_001w.phpt:1.1 
php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_001w.phpt:1.2
--- php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_001w.phpt:1.1   
Sun Apr  3 11:51:20 2005
+++ php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_001w.phpt       
Sun Oct  9 07:06:09 2005
@@ -21,9 +21,9 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedList><param0
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:nil="1" 
xsi:type="ns2:List"/></param0></ns1:echoLinkedList></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedList><param0
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:nil="true" 
xsi:type="ns2:List"/></param0></ns1:echoLinkedList></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedListResponse><return
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:nil="1" 
xsi:type="ns2:List"/></return></ns1:echoLinkedListResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedListResponse><return
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:nil="true" 
xsi:type="ns2:List"/></return></ns1:echoLinkedListResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 object(stdClass)#5 (3) {
   ["varInt"]=>
   int(1)
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_002w.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_002w.phpt
diff -u 
php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_002w.phpt:1.1 
php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_002w.phpt:1.2
--- php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_002w.phpt:1.1   
Sun Apr  3 11:51:20 2005
+++ php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_002w.phpt       
Sun Oct  9 07:06:09 2005
@@ -21,9 +21,9 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedList><param0
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">2</varInt><varString 
xsi:type="xsd:string">arg2</varString><child xsi:nil="1" 
xsi:type="ns2:List"/></child></param0></ns1:echoLinkedList></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedList><param0
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">2</varInt><varString 
xsi:type="xsd:string">arg2</varString><child xsi:nil="true" 
xsi:type="ns2:List"/></child></param0></ns1:echoLinkedList></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedListResponse><return
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">2</varInt><varString 
xsi:type="xsd:string">arg2</varString><child xsi:nil="1" 
xsi:type="ns2:List"/></child></return></ns1:echoLinkedListResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedListResponse><return
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">2</varInt><varString 
xsi:type="xsd:string">arg2</varString><child xsi:nil="true" 
xsi:type="ns2:List"/></child></return></ns1:echoLinkedListResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 object(stdClass)#6 (3) {
   ["varInt"]=>
   int(1)
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_003w.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_003w.phpt
diff -u 
php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_003w.phpt:1.1 
php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_003w.phpt:1.2
--- php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_003w.phpt:1.1   
Sun Apr  3 11:51:20 2005
+++ php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_003w.phpt       
Sun Oct  9 07:06:09 2005
@@ -21,9 +21,9 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedList><param0
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">2</varInt><varString 
xsi:type="xsd:string">arg2</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">3</varInt><varString 
xsi:type="xsd:string">arg3</varString><child xsi:nil="1" 
xsi:type="ns2:List"/></child></child></param0></ns1:echoLinkedList></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedList><param0
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">2</varInt><varString 
xsi:type="xsd:string">arg2</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">3</varInt><varString 
xsi:type="xsd:string">arg3</varString><child xsi:nil="true" 
xsi:type="ns2:List"/></child></child></param0></ns1:echoLinkedList></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedListResponse><return
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">2</varInt><varString 
xsi:type="xsd:string">arg2</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">3</varInt><varString 
xsi:type="xsd:string">arg3</varString><child xsi:nil="1" 
xsi:type="ns2:List"/></child></child></return></ns1:echoLinkedListResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedListResponse><return
 xsi:type="ns2:List"><varInt xsi:type="xsd:int">1</varInt><varString 
xsi:type="xsd:string">arg1</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">2</varInt><varString 
xsi:type="xsd:string">arg2</varString><child xsi:type="ns2:List"><varInt 
xsi:type="xsd:int">3</varInt><varString 
xsi:type="xsd:string">arg3</varString><child xsi:nil="true" 
xsi:type="ns2:List"/></child></child></return></ns1:echoLinkedListResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 object(stdClass)#7 (3) {
   ["varInt"]=>
   int(1)
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_004w.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_004w.phpt
diff -u 
php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_004w.phpt:1.1 
php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_004w.phpt:1.2
--- php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_004w.phpt:1.1   
Sun Apr  3 11:51:20 2005
+++ php-src/ext/soap/tests/interop/Round3/GroupE/r3_groupE_list_004w.phpt       
Sun Oct  9 07:06:09 2005
@@ -21,8 +21,8 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedList><param0
 xsi:nil="1" 
xsi:type="ns2:List"/></ns1:echoLinkedList></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedList><param0
 xsi:nil="true" 
xsi:type="ns2:List"/></ns1:echoLinkedList></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedListResponse><return
 xsi:nil="1" 
xsi:type="ns2:List"/></ns1:echoLinkedListResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/WSDLInteropTestRpcEnc"; 
xmlns:ns2="http://soapinterop.org/xsd"; 
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:echoLinkedListResponse><return
 xsi:nil="true" 
xsi:type="ns2:List"/></ns1:echoLinkedListResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 NULL
 ok
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_001w.phpt?r1=1.1&r2=1.2&ty=u
Index: 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_001w.phpt
diff -u 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_001w.phpt:1.1
 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_001w.phpt:1.2
--- 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_001w.phpt:1.1
  Sun Apr  3 11:51:21 2005
+++ 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_001w.phpt  
    Sun Oct  9 07:06:09 2005
@@ -15,4 +15,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/wsdl"; 
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:echoEmptyFault/></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/types"; 
xmlns:ns2="http://soapinterop.org/wsdl"; 
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><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Fault
 in response to 'echoEmptyFault'.</faultstring><detail><ns2:part1 xsi:nil="1" 
xsi:type="ns1:EmptyFault"/></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/types"; 
xmlns:ns2="http://soapinterop.org/wsdl"; 
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><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Fault
 in response to 'echoEmptyFault'.</faultstring><detail><ns2:part1 
xsi:nil="true" 
xsi:type="ns1:EmptyFault"/></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_004w.phpt?r1=1.1&r2=1.2&ty=u
Index: 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_004w.phpt
diff -u 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_004w.phpt:1.1
 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_004w.phpt:1.2
--- 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_004w.phpt:1.1
  Sun Apr  3 11:51:21 2005
+++ 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_004w.phpt  
    Sun Oct  9 07:06:09 2005
@@ -15,4 +15,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/wsdl"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/types"; 
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:echoMultipleFaults1><whichFault
 xsi:type="xsd:int">1</whichFault><param1 xsi:type="xsd:string">Hello 
world</param1><param2 SOAP-ENC:arrayType="xsd:float[3]" 
xsi:type="ns2:ArrayOfFloat"><item xsi:type="xsd:float">12.345</item><item 
xsi:type="xsd:float">45</item><item 
xsi:type="xsd:float">678</item></param2></ns1:echoMultipleFaults1></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/types"; 
xmlns:ns2="http://soapinterop.org/wsdl"; 
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><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Fault
 in response to 'echoMultipleFaults1'.</faultstring><detail><ns2:part1 
xsi:nil="1" 
xsi:type="ns1:EmptyFault"/></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/types"; 
xmlns:ns2="http://soapinterop.org/wsdl"; 
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><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Fault
 in response to 'echoMultipleFaults1'.</faultstring><detail><ns2:part1 
xsi:nil="true" 
xsi:type="ns1:EmptyFault"/></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_007w.phpt?r1=1.1&r2=1.2&ty=u
Index: 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_007w.phpt
diff -u 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_007w.phpt:1.1
 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_007w.phpt:1.2
--- 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_007w.phpt:1.1
  Sun Apr  3 11:51:21 2005
+++ 
php-src/ext/soap/tests/interop/Round4/GroupH/r4_groupH_simple_rpcenc_007w.phpt  
    Sun Oct  9 07:06:09 2005
@@ -15,4 +15,4 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/wsdl"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:ns2="http://soapinterop.org/types"; 
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:echoMultipleFaults1><whichFault
 xsi:type="xsd:int">4</whichFault><param1 xsi:type="xsd:string">Hello 
world</param1><param2 SOAP-ENC:arrayType="xsd:float[3]" 
xsi:type="ns2:ArrayOfFloat"><item xsi:type="xsd:float">12.345</item><item 
xsi:type="xsd:float">45</item><item 
xsi:type="xsd:float">678</item></param2></ns1:echoMultipleFaults1></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/types"; 
xmlns:ns2="http://soapinterop.org/wsdl"; 
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><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Fault
 in response to 'echoMultipleFaults1'.</faultstring><detail><ns2:part1 
xsi:nil="1" 
xsi:type="ns1:EmptyFault"/></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/types"; 
xmlns:ns2="http://soapinterop.org/wsdl"; 
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><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Fault
 in response to 'echoMultipleFaults1'.</faultstring><detail><ns2:part1 
xsi:nil="true" 
xsi:type="ns1:EmptyFault"/></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_013w.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_013w.phpt
diff -u 
php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_013w.phpt:1.1 
php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_013w.phpt:1.2
--- php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_013w.phpt:1.1    
Sun Apr  3 11:51:22 2005
+++ php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_013w.phpt        
Sun Oct  9 07:06:09 2005
@@ -13,7 +13,7 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";><SOAP-ENV:Body><ns1:echoStringMultiOccurs><ns1:inputStringMultiOccurs><ns1:string>arg1</ns1:string><ns1:string
 
xsi:nil="1"/><ns1:string>arg3</ns1:string></ns1:inputStringMultiOccurs></ns1:echoStringMultiOccurs></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";><SOAP-ENV:Body><ns1:echoStringMultiOccurs><ns1:inputStringMultiOccurs><ns1:string>arg1</ns1:string><ns1:string
 
xsi:nil="true"/><ns1:string>arg3</ns1:string></ns1:inputStringMultiOccurs></ns1:echoStringMultiOccurs></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/";><SOAP-ENV:Body><ns1:echoStringMultiOccursResponse><ns1:return>arg1</ns1:return><ns1:return/><ns1:return>arg3</ns1:return></ns1:echoStringMultiOccursResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 ok
http://cvs.php.net/diff.php/php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_015w.phpt?r1=1.1&r2=1.2&ty=u
Index: php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_015w.phpt
diff -u 
php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_015w.phpt:1.1 
php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_015w.phpt:1.2
--- php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_015w.phpt:1.1    
Sun Apr  3 11:51:22 2005
+++ php-src/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_015w.phpt        
Sun Oct  9 07:06:09 2005
@@ -21,7 +21,7 @@
 ?>
 --EXPECT--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/xsd"; xmlns:ns2="http://soapinterop.org/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";><SOAP-ENV:Body><ns2:echoComplexTypeMultiOccurs><ns2:inputComplexTypeMultiOccurs><ns2:SOAPComplexType><ns1:varInt>34</ns1:varInt><ns1:varString>arg</ns1:varString><ns1:varFloat>325.325</ns1:varFloat></ns2:SOAPComplexType><ns2:SOAPComplexType
 
xsi:nil="1"/><ns2:SOAPComplexType><ns1:varInt>34</ns1:varInt><ns1:varString>arg</ns1:varString><ns1:varFloat>325.325</ns1:varFloat></ns2:SOAPComplexType></ns2:inputComplexTypeMultiOccurs></ns2:echoComplexTypeMultiOccurs></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/xsd"; xmlns:ns2="http://soapinterop.org/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";><SOAP-ENV:Body><ns2:echoComplexTypeMultiOccurs><ns2:inputComplexTypeMultiOccurs><ns2:SOAPComplexType><ns1:varInt>34</ns1:varInt><ns1:varString>arg</ns1:varString><ns1:varFloat>325.325</ns1:varFloat></ns2:SOAPComplexType><ns2:SOAPComplexType
 
xsi:nil="true"/><ns2:SOAPComplexType><ns1:varInt>34</ns1:varInt><ns1:varString>arg</ns1:varString><ns1:varFloat>325.325</ns1:varFloat></ns2:SOAPComplexType></ns2:inputComplexTypeMultiOccurs></ns2:echoComplexTypeMultiOccurs></SOAP-ENV:Body></SOAP-ENV:Envelope>
 <?xml version="1.0" encoding="UTF-8"?>
 <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://soapinterop.org/xsd"; 
xmlns:ns2="http://soapinterop.org/";><SOAP-ENV:Body><ns2:echoComplexTypeMultiOccursResponse><ns2:return><ns1:varInt>34</ns1:varInt><ns1:varString>arg</ns1:varString><ns1:varFloat>325.325</ns1:varFloat></ns2:return><ns2:return/><ns2:return><ns1:varInt>34</ns1:varInt><ns1:varString>arg</ns1:varString><ns1:varFloat>325.325</ns1:varFloat></ns2:return></ns2:echoComplexTypeMultiOccursResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
 ok
http://cvs.php.net/diff.php/php-src/ext/soap/tests/schema/schema062.phpt?r1=1.4&r2=1.5&ty=u
Index: php-src/ext/soap/tests/schema/schema062.phpt
diff -u php-src/ext/soap/tests/schema/schema062.phpt:1.4 
php-src/ext/soap/tests/schema/schema062.phpt:1.5
--- php-src/ext/soap/tests/schema/schema062.phpt:1.4    Sun Apr  3 11:39:56 2005
+++ php-src/ext/soap/tests/schema/schema062.phpt        Sun Oct  9 07:06:09 2005
@@ -19,7 +19,7 @@
 ?>
 --EXPECTF--
 <?xml version="1.0" encoding="UTF-8"?>
-<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://test-uri/"; 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><testParam
 xsi:nil="1" int="123" 
xsi:type="ns1:testType"/></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
+<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:ns1="http://test-uri/"; 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><testParam
 xsi:nil="true" int="123" 
xsi:type="ns1:testType"/></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
 object(stdClass)#%d (2) {
   ["_"]=>
   NULL

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

Reply via email to