From 3b19e196faab180102fe85089b20df94f6344ff4 Mon Sep 17 00:00:00 2001
From: Dmitry Stogov (PHP 5) checks if SOAP call was failedTable of Contents
-
-
+is_sopa_fault -- checks if SOAP call was failed is_soap_fault -- checks if SOAP call was failed SoapClient::SoapClient -- SoapClient constructor SoapClient::__call -- calls a SOAP function
@@ -189,7 +189,7 @@ It is just a data holder and it has not any special method except constructor.
SoapClient::__getLastRequest -- returns last SOAP request is_sopa_fault
+is_soap_fault
Description
@@ -266,7 +266,10 @@ This is a low level API function to make a SOAP call. Usually in WSDL mode
you can simple call SOAP functions as SoapClient methods. It is useful for
nonWSDL mode when 'soapaction' is unknown, 'uri' is differ form default or
when ypu like to send and/or receive SOAP Headers. To check if function call
-is failed check the result with is_soap_fault() function.
+is failed check the result with is_soap_fault() function.
+SOAP function may return one or several values. In the first case __call will
+return just the value of output parameter, in the second it will return
+array with named output parameters.
@@ -388,12 +391,22 @@ allow setting a default SOAP version (soap_version) and actor URI Exports one or more functions for remote clients. To export one function pass function name into functions parameter as string. To export several functions pass an array of function names and to export all functions pass -a special constant SOAP_FUNCTIONS_ALL. +a special constant SOAP_FUNCTIONS_ALL.
(PHP 5) handles a SOAP request Description-void handle() +void handle([string soap_envelope]) It processes a SOAP request, call necessary functions, and send response back. -It assumes request in global $HTTP_RAW_POST_DATA PHP variable. +It assumes request in input parameter or in global $HTTP_RAW_POST_DATA PHP variable +if the argument is omitted.Example
|