Searched defs:fault (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_4/ext/soap/interop/ |
| H A D | client_round2_interop.php | 153 } catch (SoapFault $fault) { 155 echo "<pre>$fault</pre>\n"; 157 echo "$fault\n"; 263 $success = $result['fault']->faultcode; 268 $error = $result['fault']->faultstring; 269 if (!$wire) $wire= $result['fault']->detail; 371 $endpoint_info['client']->wsdl->fault = $ex; 377 if ($soap->wsdl->fault) { 378 $fault = $soap->wsdl->fault; variable 387 $fault = new SoapFault('WSDL',"no WSDL defined for $endpoint"); variable 489 $fault = new SoapFault('HEADER','The returned result did not match what we expected to receive'); variable 500 $fault = new SoapFault('RESULT','The returned result did not match what we expected to receive'); variable 508 $fault = $return; variable [all...] |
| H A D | client_round2_params.php | 67 function setResult($ok, $result, $wire, $error = '', $fault = NULL) 73 $this->result['fault'] = $fault; 107 $fault = $this->result['fault']; variable 108 if ($fault) { 109 $res = $fault->faultcode; 115 print "<font color=\"#ff0000\">FAILED: [$res] {$fault->faultstring}</font>\n"; 117 print "FAILED: [$res] {$fault->faultstring}\n"; 489 // invalid namespace, should recieve a fault [all...] |
| /PHP_5_4/sapi/fpm/fpm/ |
| H A D | fpm_children.c | 35 static int fault; variable 266 last_faults[fault++] = now; 268 if (fault == fpm_global_config.emergency_restart_threshold) { 269 fault = 0;
|
| /PHP_5_4/ext/soap/ |
| H A D | php_packet_soap.c | 29 xmlNodePtr trav, env, head, body, resp, cur, fault; local 180 fault = get_node_ex(body->children,"Fault",envelope_ns); 181 if (fault != NULL) { 187 tmp = get_node(fault->children, "faultcode"); 192 tmp = get_node(fault->children, "faultstring"); 199 tmp = get_node(fault->children, "faultactor"); 206 tmp = get_node(fault->children, "detail"); 211 tmp = get_node(fault->children, "Code"); 219 tmp = get_node(fault->children,"Reason"); 230 tmp = get_node(fault [all...] |
| H A D | php_sdl.c | 37 static void delete_fault(void *fault); 38 static void delete_fault_persistent(void *fault); 449 static sdlSoapBindingFunctionHeaderPtr wsdl_soap_binding_header(sdlCtx* ctx, xmlNodePtr header, char* wsdl_soap_namespace, int fault) argument 530 if (!fault) { 906 xmlNodePtr input, output, fault, portTypeOperation, trav3; local 934 !node_is_equal(trav3,"fault") && 1051 fault = portTypeOperation->children; 1052 while (fault != NULL) { 1053 if (node_is_equal_ex(fault, "fault", WSDL_NAMESPAC 1734 sdlFaultPtr fault = emalloc(sizeof(sdlFault)); local 2324 sdlFaultPtr *fault; local 3660 sdlFaultPtr fault = *((sdlFaultPtr*)data); local 3681 sdlFaultPtr fault = *((sdlFaultPtr*)data); local [all...] |
| H A D | soap.c | 55 static void soap_server_fault_ex(sdlFunctionPtr function, zval* fault, soapHeader* hdr TSRMLS_DC); 214 PHP_METHOD(SoapServer, fault); 408 PHP_ME(SoapServer, fault, arginfo_soapserver_fault, 0) 866 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid fault code"); 870 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid fault code"); 874 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid fault code"); 1987 /* {{{ proto SoapServer::fault ( staring code, string string [, string actor [, mixed details [, string name]]] ) 1989 PHP_METHOD(SoapServer, fault) 2018 zval *fault; local 2030 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &fault, soap_header_class_entr 2047 soap_server_fault_ex(sdlFunctionPtr function, zval* fault, soapHeader *hdr TSRMLS_DC) argument 2145 zval *fault, *exception; local 2205 int fault = 0; local 2299 zval *fault; local 2541 zval **fault; local 2768 zval** fault; local 2777 zval** fault; local 3213 zval *fault; local 3796 sdlFaultPtr fault = NULL; local [all...] |
Completed in 21 milliseconds