didou           Mon Aug 30 22:15:49 2004 EDT

  Modified files:              
    /phpdoc/en/reference/soap/functions SoapClient-call.xml 
                                        SoapClient-getLastRequest.xml 
                                        SoapClient-getLastResponse.xml 
                                        is-soap-fault.xml 
  Log:
  fix syntax errors
  
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/SoapClient-call.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/soap/functions/SoapClient-call.xml
diff -u phpdoc/en/reference/soap/functions/SoapClient-call.xml:1.1 
phpdoc/en/reference/soap/functions/SoapClient-call.xml:1.2
--- phpdoc/en/reference/soap/functions/SoapClient-call.xml:1.1  Thu Mar  4 12:07:20 
2004
+++ phpdoc/en/reference/soap/functions/SoapClient-call.xml      Mon Aug 30 22:15:48 
2004
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.1 $ -->
+<!-- $Revision: 1.2 $ -->
   <refentry id="function.SoapClient-call">
    <refnamediv>
     <refname>SoapClient::__call</refname>
@@ -42,7 +42,7 @@
 $client->SomeFunction($a, $b, $c);
 $client->__call("SomeFunction", array($a, $b, $c));
 $client->__call("SomeFunction", array($a, $b, $c), NULL,
-                new SoapHeader(...), $output_headers);
+                new SoapHeader(), $output_headers);
 
 
 $client = new SoapClient(null, array('location' => "http://localhost/soap.php";,
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/SoapClient-getLastRequest.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/soap/functions/SoapClient-getLastRequest.xml
diff -u phpdoc/en/reference/soap/functions/SoapClient-getLastRequest.xml:1.2 
phpdoc/en/reference/soap/functions/SoapClient-getLastRequest.xml:1.3
--- phpdoc/en/reference/soap/functions/SoapClient-getLastRequest.xml:1.2        Tue 
Mar  9 05:38:13 2004
+++ phpdoc/en/reference/soap/functions/SoapClient-getLastRequest.xml    Mon Aug 30 
22:15:48 2004
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
   <refentry id="function.SoapClient-getLastRequest">
    <refnamediv>
     <refname>SoapClient::__getLastRequest</refname>
@@ -24,7 +24,7 @@
 <![CDATA[
 <?php
 $client = SoapClient("some.wsdl", array('trace' => 1));
-$result = $client->SomeFunction(...);
+$result = $client->SomeFunction();
 echo "REQUEST:\n" . $client->__getLastRequest() . "\n";
 ?>
 ]]>
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/SoapClient-getLastResponse.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/soap/functions/SoapClient-getLastResponse.xml
diff -u phpdoc/en/reference/soap/functions/SoapClient-getLastResponse.xml:1.2 
phpdoc/en/reference/soap/functions/SoapClient-getLastResponse.xml:1.3
--- phpdoc/en/reference/soap/functions/SoapClient-getLastResponse.xml:1.2       Tue 
Mar  9 05:38:14 2004
+++ phpdoc/en/reference/soap/functions/SoapClient-getLastResponse.xml   Mon Aug 30 
22:15:48 2004
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.2 $ -->
+<!-- $Revision: 1.3 $ -->
   <refentry id="function.SoapClient-getLastResponse">
    <refnamediv>
     <refname>SoapClient::__getLastResponse</refname>
@@ -24,7 +24,7 @@
 <![CDATA[
 <?php
 $client = SoapClient("some.wsdl", array('trace' => 1));
-$result = $client->SomeFunction(...);
+$result = $client->SomeFunction();
 echo "RESPONSE:\n" . $client->__getLastResponse() . "\n";
 ?>
 ]]>
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/is-soap-fault.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/soap/functions/is-soap-fault.xml
diff -u phpdoc/en/reference/soap/functions/is-soap-fault.xml:1.5 
phpdoc/en/reference/soap/functions/is-soap-fault.xml:1.6
--- phpdoc/en/reference/soap/functions/is-soap-fault.xml:1.5    Thu Jul 15 19:00:52 
2004
+++ phpdoc/en/reference/soap/functions/is-soap-fault.xml        Mon Aug 30 22:15:48 
2004
@@ -1,5 +1,5 @@
 <?xml version='1.0' encoding='iso-8859-1'?>
-<!-- $Revision: 1.5 $ -->
+<!-- $Revision: 1.6 $ -->
   <refentry id="function.is-soap-fault">
    <refnamediv>
     <refname>is_soap_fault</refname>
@@ -35,7 +35,7 @@
 <![CDATA[
 <?php
 $client = new SoapClient("some.wsdl", array('exceptions' => 0));
-$result = $client->SomeFunction(...);
+$result = $client->SomeFunction();
 if (is_soap_fault($result)) {
     trigger_error("SOAP Fault: (faultcode: {$result->faultcode}, faultstring: 
{$result->faultstring})", E_ERROR);
 }

Reply via email to