[PHP-DOC] cvs: phpdoc /en/reference/soap reference.xml

2005-02-02 Thread Mehdi Achour
didou   Wed Feb  2 12:33:09 2005 EDT

  Modified files:  
/phpdoc/en/reference/soap   reference.xml 
  Log:
  Not experimental anymore
  
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/reference.xml?r1=1.7&r2=1.8&ty=u
Index: phpdoc/en/reference/soap/reference.xml
diff -u phpdoc/en/reference/soap/reference.xml:1.7 
phpdoc/en/reference/soap/reference.xml:1.8
--- phpdoc/en/reference/soap/reference.xml:1.7  Fri Jan 28 09:02:10 2005
+++ phpdoc/en/reference/soap/reference.xml  Wed Feb  2 12:33:09 2005
@@ -1,5 +1,5 @@
 
-
+
 
 
  SOAP Functions
@@ -8,7 +8,6 @@
  
   
&reftitle.intro;
-   &warn.experimental;

 The SOAP extension can be used to write SOAP Servers and Clients. It 
supports
 subsets of SOAP 1.1, 

[PHP-DOC] cvs: phpdoc /en/reference/soap reference.xml /en/reference/soap/functions soap-soapclient-call.xml soap-soapclient-construct.xml soap-soapclient-dorequest.xml soap-soapclient-soapcall.xml soap-soapfault-construct.xml soap-soapheader-construct.xml soap-soapparam-construct.xml soap-soapserver-construct.xml soap-soapvar-construct.xml

2005-01-28 Thread Dmitry Stogov
dmitry  Fri Jan 28 09:02:11 2005 EDT

  Added files: 
/phpdoc/en/reference/soap/functions soap-soapclient-soapcall.xml 

  Modified files:  
/phpdoc/en/reference/soap   reference.xml 
/phpdoc/en/reference/soap/functions soap-soapclient-call.xml 
soap-soapclient-construct.xml 
soap-soapclient-dorequest.xml 
soap-soapfault-construct.xml 
soap-soapheader-construct.xml 
soap-soapparam-construct.xml 
soap-soapserver-construct.xml 
soap-soapvar-construct.xml 
  Log:
  1. New function SoapClient->__callSoap() is a replacement for old derecated 
SoapClient->__call().
  2. Description of SoapClient->__doRequest() method.
  3. Description of additional options for SoapClient and SoapServer 
constructors.
  
  http://cvs.php.net/diff.php/phpdoc/en/reference/soap/reference.xml?r1=1.6&r2=1.7&ty=u
Index: phpdoc/en/reference/soap/reference.xml
diff -u phpdoc/en/reference/soap/reference.xml:1.6 
phpdoc/en/reference/soap/reference.xml:1.7
--- phpdoc/en/reference/soap/reference.xml:1.6  Thu Jan 20 13:36:04 2005
+++ phpdoc/en/reference/soap/reference.xml  Fri Jan 28 09:02:10 2005
@@ -1,5 +1,5 @@
 
-
+
 
 
  SOAP Functions
@@ -56,7 +56,7 @@
  &reftitle.methods;
  
   
-- Calls a SOAP 
function
+- Calls a SOAP 
function (deprecated)
   
   
 - Performs 
a SOAP request
@@ -83,6 +83,9 @@
 - Sets the
cookie that will be sent with the SOAP request
   
+  
+- Calls a 
SOAP function
+  
  
 

@@ -106,7 +109,7 @@
  SoapHeader is a special low-level class for 
passing 
  or returning SOAP headers. It's just a data holder and it does not have 
any 
  special methods except its constructor. It can be used in the  method to pass a SOAP header 
or 
+ linkend='function.soap-soapclient-soapcall' /> method to pass a SOAP 
header or 
  in a SOAP header handler to return the header in a SOAP response.
 
 
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/soap-soapclient-call.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/soap/functions/soap-soapclient-call.xml
diff -u phpdoc/en/reference/soap/functions/soap-soapclient-call.xml:1.2 
phpdoc/en/reference/soap/functions/soap-soapclient-call.xml:1.3
--- phpdoc/en/reference/soap/functions/soap-soapclient-call.xml:1.2 Sun Jan 
16 00:28:55 2005
+++ phpdoc/en/reference/soap/functions/soap-soapclient-call.xml Fri Jan 28 
09:02:11 2005
@@ -1,10 +1,10 @@
 
-
+
 
  
   SoapClient->__call()
   
-   Calls a SOAP function
+   Calls a SOAP function (deprecated)
   
  
  
@@ -22,71 +22,8 @@

   
   
-   This is a low level API function that is used to make a SOAP call. Usually,
-   in WSDL mode,
-   you can simply call SOAP functions as SoapClient 
-   methods. This method useful in non-WSDL mode when 
soapaction 
-   is unknown, uri differs from the default or when sending
-   and/or receiving SOAP Headers.
-  
-  
-   On error, a call to a SOAP function can cause PHP to throw exceptions or 
return a
-   SoapFault object if exceptions are disabled.
-   To check if the function call failed to catch the SoapFault exceptions,
-   check the result with is_soap_fault.
-  
- 
- 
-  &reftitle.returnvalues;
-  
-   SOAP functions may return one, or multiple values. If only one value is 
returned
-   by the SOAP function, the return value of __call will be
-   a simple value (e.g. an integer, a string, etc). If multiple values are
-   returned, __call will return
-   an associative array of named output parameters.  
-  
- 
- 
-  &reftitle.examples;
-  
-   
-SoapClient->__call() Examples
-
-
-
-   
-  
- 
- 
-  &reftitle.seealso;
-  
-   
-
-
-
-
-
-is_soap_fault
-   
+   This method is deprecated. Use  instead of it.
   
  
 
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml?r1=1.2&r2=1.3&ty=u
Index: phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml
diff -u phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml:1.2 
phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml:1.3
--- phpdoc/en/reference/soap/functions/soap-soapclient-construct.xml:1.2
Sun Jan 16 00:28:55 2005
+++ phpdoc/en/reference/soap/functions/soap-soapclient-construct.xmlFri Jan 
28 09:02:11 2005
@@ -1,5 +1,5 @@
 
-
+
 
  
   SoapClient->__construct()
@@ -59,6 +59,26 @@
a proxy server, use the options proxy_host,
proxy_port, proxy_login
and proxy_password.
+   For HTTPS client certificate authentication use
+   local_cert and passphrase options.
+  
+  
+   The compression option allows to use compression
+   of H

[PHP-DOC] cvs: phpdoc /en/reference/soap reference.xml

2005-01-20 Thread Mehdi Achour
didou   Thu Jan 20 13:36:04 2005 EDT

  Modified files:  
/phpdoc/en/reference/soap   reference.xml 
  Log:
  Add SoapClient->__setCookie() docs
  
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/reference.xml?r1=1.5&r2=1.6&ty=u
Index: phpdoc/en/reference/soap/reference.xml
diff -u phpdoc/en/reference/soap/reference.xml:1.5 
phpdoc/en/reference/soap/reference.xml:1.6
--- phpdoc/en/reference/soap/reference.xml:1.5  Sun Jan 16 00:28:55 2005
+++ phpdoc/en/reference/soap/reference.xml  Thu Jan 20 13:36:04 2005
@@ -1,5 +1,5 @@
 
-
+
 
 
  SOAP Functions
@@ -79,6 +79,10 @@
   
 - Returns 
list of SOAP types
   
+  
+- Sets the
+   cookie that will be sent with the SOAP request
+  
  
 



Re: [PHP-DOC] cvs: phpdoc /en/reference/soap reference.xml /en/reference/soap/functions SoapClient-SoapClient.xml SoapClient-call.xml SoapClient-getFunctions.xml SoapClient-getLastRequest.xml SoapClient-getLastResponse.xml SoapClient-getTypes.xml SoapFaul

2005-01-10 Thread Nuno Lopes
 Added files:
   /phpdoc/en/reference/soap/functions soap-soapclient-call.xml
  soap-soapclient-construct.xml
  soap-soapclient-getfunctions.xml
  soap-soapclient-getlastrequest.xml
  soap-soapclient-getlastresponse.xml
  soap-soapclient-gettypes.xml
  soap-soapfault-construct.xml
  soap-soapheader-construct.xml
  soap-soapparam-construct.xml
  soap-soapserver-addfunction.xml
  soap-soapserver-construct.xml
  soap-soapserver-getfunctions.xml
  soap-soapserver-handle.xml
  soap-soapserver-setclass.xml
  soap-soapserver-setpersistence.xml
  soap-soapvar-construct.xml

the 'soap-' prefix wasn't needed. It was added to DOM files just because of 
id colisions with domXML.

Nuno 


[PHP-DOC] cvs: phpdoc /en/reference/soap reference.xml /en/reference/soap/functions soap-soapclient-dorequest.xml soap-soapclient-getlastrequest.xml soap-soapclient-getlastrequestheaders.xml soap-soapclient-getlastresponse.xml soap-soapclient-getlastresponseheaders.xml soap-soapserver-fault.xml use-soap-error-handler.xml

2005-01-09 Thread Mehdi Achour
didou   Sun Jan  9 22:02:33 2005 EDT

  Added files: 
/phpdoc/en/reference/soap/functions soap-soapclient-dorequest.xml 

soap-soapclient-getlastrequestheaders.xml 

soap-soapclient-getlastresponseheaders.xml 
soap-soapserver-fault.xml 
use-soap-error-handler.xml 

  Modified files:  
/phpdoc/en/reference/soap   reference.xml 
/phpdoc/en/reference/soap/functions 
soap-soapclient-getlastrequest.xml 
soap-soapclient-getlastresponse.xml 
  Log:
  add SoapClient->getLastRequestHeaders(), 
SoapClient->getLastResponseHeaders(), SoapClient->doRequest(), 
SoapServer->fault() and use_soap_error_handler()
  # not documenting soap_encode_to_xx() and SoapServer->map() as the soap 
maintainer think about removing these functions
  http://cvs.php.net/diff.php/phpdoc/en/reference/soap/reference.xml?r1=1.3&r2=1.4&ty=u
Index: phpdoc/en/reference/soap/reference.xml
diff -u phpdoc/en/reference/soap/reference.xml:1.3 
phpdoc/en/reference/soap/reference.xml:1.4
--- phpdoc/en/reference/soap/reference.xml:1.3  Sun Jan  9 19:46:17 2005
+++ phpdoc/en/reference/soap/reference.xml  Sun Jan  9 22:02:33 2005
@@ -1,5 +1,5 @@
 
-
+
 
 
  SOAP Functions
@@ -58,15 +58,24 @@
 - Calls a SOAP 
function
   
   
+- Performs 
a SOAP request
+  
+  
 - 
Returns list of SOAP functions
   
   
 - 
Returns last SOAP request
   
   
+
- Returns last SOAP request headers
+  
+  
 - 
Returns last SOAP response
   
   
+- Returns last SOAP response headers
+  
+  
 - Returns 
list of SOAP types
   
  
@@ -141,6 +150,9 @@
 - Adds 
one or several functions those will handle SOAP requests
   
   
+- 
+  
+  
 - 
Returns list of defined functions
   
   
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/soap-soapclient-getlastrequest.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/soap/functions/soap-soapclient-getlastrequest.xml
diff -u 
phpdoc/en/reference/soap/functions/soap-soapclient-getlastrequest.xml:1.1 
phpdoc/en/reference/soap/functions/soap-soapclient-getlastrequest.xml:1.2
--- phpdoc/en/reference/soap/functions/soap-soapclient-getlastrequest.xml:1.1   
Sun Jan  9 19:46:17 2005
+++ phpdoc/en/reference/soap/functions/soap-soapclient-getlastrequest.xml   
Sun Jan  9 22:02:33 2005
@@ -1,5 +1,5 @@
 
-
+
 
  
   SoapClient->__getLastRequest()
@@ -52,7 +52,9 @@
   

 
+
 
+

   
  
http://cvs.php.net/diff.php/phpdoc/en/reference/soap/functions/soap-soapclient-getlastresponse.xml?r1=1.1&r2=1.2&ty=u
Index: phpdoc/en/reference/soap/functions/soap-soapclient-getlastresponse.xml
diff -u 
phpdoc/en/reference/soap/functions/soap-soapclient-getlastresponse.xml:1.1 
phpdoc/en/reference/soap/functions/soap-soapclient-getlastresponse.xml:1.2
--- phpdoc/en/reference/soap/functions/soap-soapclient-getlastresponse.xml:1.1  
Sun Jan  9 19:46:17 2005
+++ phpdoc/en/reference/soap/functions/soap-soapclient-getlastresponse.xml  
Sun Jan  9 22:02:33 2005
@@ -1,5 +1,5 @@
 
-
+
 
  
   SoapClient->__getLastResponse()
@@ -52,7 +52,9 @@
   

 
+
 
+

   
  

http://cvs.php.net/co.php/phpdoc/en/reference/soap/functions/soap-soapclient-dorequest.xml?r=1.1&p=1
Index: phpdoc/en/reference/soap/functions/soap-soapclient-dorequest.xml
+++ phpdoc/en/reference/soap/functions/soap-soapclient-dorequest.xml



 
  SoapClient->__doRequest()
  
   Performs a SOAP request
  
 
 
  &reftitle.description;
  
   SoapClient
   
void
__doRequest
stringbuf

stringlocation
stringaction
intversion
   
  
  &warn.undocumented.func;
 
 
  &reftitle.returnvalues;
  
   &return.void;
  
 




http://cvs.php.net/co.php/phpdoc/en/reference/soap/functions/soap-soapclient-getlastrequestheaders.xml?r=1.1&p=1
Index: 
phpdoc/en/reference/soap/functions/soap-soapclient-getlastrequestheaders.xml
+++ phpdoc/en/reference/soap/functions/soap-soapclient-getlastrequestheaders.xml



 
  SoapClient->__getLastRequestHeaders()
  
   Returns last SOAP request headers
  
 
 
  &reftitle.description;
  
   SoapClient
   
string
__getLastRequestHeaders

   
  
  
   
This method works only if the SoapClient object
was created with the trace option.
   
  
 
 
  &reftitle.returnvalues;
  
   The last SOAP request headers.
  
 
 
  &reftitle.seealso;
  
   




   
  
 




http://cvs.php.net/co.php/phpdoc/en/reference/soap/functions/soap-soapclient-getlastresponseheaders.xml?r=1.1&p=1
Index: 
phpdoc/en/reference/soap/functions/soap-soapclient-getlastresponseheaders.xml
+++ 
phpdoc/en/reference/soap/functions/soap-soapclient-getlastresp