/home/mjc1/public_html/emillennium/nusoap/lib/class.soap_fault.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php




/**
* Contains information for a SOAP fault.
* Mainly used for returning faults from deployed functions
* in a server instance.
* @author   Dietrich Ayala <dietrich@ganx4.com>
* @version  $Id: class.soap_fault.php,v 1.14 2007/04/11 15:49:47 snichol Exp $
* @access public
*/
class nusoap_fault extends nusoap_base {
    
/**
     * The fault code (client|server)
     * @var string
     * @access private
     */
    
var $faultcode;
    
/**
     * The fault actor
     * @var string
     * @access private
     */
    
var $faultactor;
    
/**
     * The fault string, a description of the fault
     * @var string
     * @access private
     */
    
var $faultstring;
    
/**
     * The fault detail, typically a string or array of string
     * @var mixed
     * @access private
     */
    
var $faultdetail;

    
/**
    * constructor
    *
    * @param string $faultcode (SOAP-ENV:Client | SOAP-ENV:Server)
    * @param string $faultactor only used when msg routed between multiple actors
    * @param string $faultstring human readable error message
    * @param mixed $faultdetail detail, typically a string or array of string
    */
    
function nusoap_fault($faultcode,$faultactor='',$faultstring='',$faultdetail=''){
        
parent::nusoap_base();
        
$this->faultcode $faultcode;
        
$this->faultactor $faultactor;
        
$this->faultstring $faultstring;
        
$this->faultdetail $faultdetail;
    }

    
/**
    * serialize a fault
    *
    * @return    string    The serialization of the fault instance.
    * @access   public
    */
    
function serialize(){
        
$ns_string '';
        foreach(
$this->namespaces as $k => $v){
            
$ns_string .= "\n  xmlns:$k=\"$v\"";
        }
        
$return_msg =
            
'<?xml version="1.0" encoding="'.$this->soap_defencoding.'"?>'.
            
'<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"'.$ns_string.">\n".
                
'<SOAP-ENV:Body>'.
                
'<SOAP-ENV:Fault>'.
                    
$this->serialize_val($this->faultcode'faultcode').
                    
$this->serialize_val($this->faultactor'faultactor').
                    
$this->serialize_val($this->faultstring'faultstring').
                    
$this->serialize_val($this->faultdetail'detail').
                
'</SOAP-ENV:Fault>'.
                
'</SOAP-ENV:Body>'.
            
'</SOAP-ENV:Envelope>';
        return 
$return_msg;
    }
}

/**
 * Backward compatibility
 */
class soap_fault extends nusoap_fault {
}


?>