Inheritance diagram for nusoap_base:
Public Member Functions | |
| nusoap_base () | |
| getGlobalDebugLevel () | |
| setGlobalDebugLevel ($level) | |
| getDebugLevel () | |
| setDebugLevel ($level) | |
| debug ($string) | |
| appendDebug ($string) | |
| clearDebug () | |
| & | getDebug () |
| & | getDebugAsXMLComment () |
| expandEntities ($val) | |
| getError () | |
| setError ($str) | |
| isArraySimpleOrStruct ($val) | |
| serialize_val ($val, $name=false, $type=false, $name_ns=false, $type_ns=false, $attributes=false, $use='encoded', $soapval=false) | |
| serializeEnvelope ($body, $headers=false, $namespaces=array(), $style='rpc', $use='encoded', $encodingStyle='http://schemas.xmlsoap.org/soap/encoding/') | |
| formatDump ($str) | |
| contractQname ($qname) | |
| expandQname ($qname) | |
| getLocalPart ($str) | |
| getPrefix ($str) | |
| getNamespaceFromPrefix ($prefix) | |
| getPrefixFromNamespace ($ns) | |
| getmicrotime () | |
| varDump ($data) | |
| __toString () | |
| nusoap_base () | |
| getGlobalDebugLevel () | |
| setGlobalDebugLevel ($level) | |
| getDebugLevel () | |
| setDebugLevel ($level) | |
| debug ($string) | |
| appendDebug ($string) | |
| clearDebug () | |
| & | getDebug () |
| & | getDebugAsXMLComment () |
| expandEntities ($val) | |
| getError () | |
| setError ($str) | |
| isArraySimpleOrStruct ($val) | |
| serialize_val ($val, $name=false, $type=false, $name_ns=false, $type_ns=false, $attributes=false, $use='encoded', $soapval=false) | |
| serializeEnvelope ($body, $headers=false, $namespaces=array(), $style='rpc', $use='encoded', $encodingStyle='http://schemas.xmlsoap.org/soap/encoding/') | |
| formatDump ($str) | |
| contractQname ($qname) | |
| expandQname ($qname) | |
| getLocalPart ($str) | |
| getPrefix ($str) | |
| getNamespaceFromPrefix ($prefix) | |
| getPrefixFromNamespace ($ns) | |
| getmicrotime () | |
| varDump ($data) | |
| __toString () | |
Data Fields | |
| $title = 'NuSOAP' | |
| $version = '0.7.3' | |
| $revision = '$Revision: 1.51 $' | |
| $error_str = '' | |
| $debug_str = '' | |
| $charencoding = true | |
| $debugLevel | |
| $XMLSchemaVersion = 'http://www.w3.org/2001/XMLSchema' | |
| $soap_defencoding = 'ISO-8859-1' | |
| $namespaces | |
| $usedNamespaces = array() | |
| $typemap | |
| $xmlEntities | |
public
public
Definition at line 86 of file class.nusoap_base.php.
| __toString | ( | ) |
represents the object as a string
Definition at line 888 of file class.nusoap_base.php.
References varDump().
{
return $this->varDump($this);
}
| __toString | ( | ) |
represents the object as a string
Definition at line 888 of file nusoap.php.
References varDump().
{
return $this->varDump($this);
}
| appendDebug | ( | $ | string | ) |
adds debug data to the instance debug string without formatting
| string | $string debug data public |
Definition at line 288 of file nusoap.php.
{
if ($this->debugLevel > 0) {
// it would be nice to use a memory stream here to use
// memory more efficiently
$this->debug_str .= $string;
}
}
| appendDebug | ( | $ | string | ) |
adds debug data to the instance debug string without formatting
| string | $string debug data public |
Definition at line 288 of file class.nusoap_base.php.
Referenced by nusoap_client::_getProxyClassCode(), nusoap_xmlschema::addComplexType(), nusoap_xmlschema::addElement(), nusoap_xmlschema::addSimpleType(), nusoap_parser::buildVal(), nusoap_client::call(), nusoap_client::checkWSDL(), soap_transport_http::connect(), debug(), wsdl::end_element(), nusoap_server::invoke_method(), nusoap_client::nusoap_client(), nusoap_server::nusoap_server(), wsdl::parametersMatchWrapped(), nusoap_client::parseResponse(), wsdl::parseWSDL(), nusoap_xmlschema::schemaStartElement(), nusoap_client::send(), nusoap_server::serialize_return(), serialize_val(), serializeEnvelope(), wsdl::serializeParameters(), wsdl::serializeRPCParameters(), wsdl::serializeType(), nusoap_server::service(), wsdl::setCredentials(), nusoap_client::setCredentials(), soap_transport_http::setCredentials(), nusoap_client::setCurlOption(), soap_transport_http::setCurlOption(), nusoap_client::setHeaders(), soap_transport_http::soap_transport_http(), and wsdl::start_element().
{
if ($this->debugLevel > 0) {
// it would be nice to use a memory stream here to use
// memory more efficiently
$this->debug_str .= $string;
}
}
| clearDebug | ( | ) |
clears the current debug data for this instance
public
Definition at line 301 of file class.nusoap_base.php.
{
// it would be nice to use a memory stream here to use
// memory more efficiently
$this->debug_str = '';
}
| clearDebug | ( | ) |
clears the current debug data for this instance
public
Definition at line 301 of file nusoap.php.
{
// it would be nice to use a memory stream here to use
// memory more efficiently
$this->debug_str = '';
}
| contractQname | ( | $ | qname | ) |
contracts (changes namespace to prefix) a qualified name
| string | $qname qname |
Definition at line 741 of file class.nusoap_base.php.
References $name, and getPrefixFromNamespace().
{
// get element namespace
//$this->xdebug("Contract $qname");
if (strrpos($qname, ':')) {
// get unqualified name
$name = substr($qname, strrpos($qname, ':') + 1);
// get ns
$ns = substr($qname, 0, strrpos($qname, ':'));
$p = $this->getPrefixFromNamespace($ns);
if ($p) {
return $p . ':' . $name;
}
return $qname;
} else {
return $qname;
}
}
| contractQname | ( | $ | qname | ) |
contracts (changes namespace to prefix) a qualified name
| string | $qname qname |
Definition at line 741 of file nusoap.php.
References $name, and getPrefixFromNamespace().
{
// get element namespace
//$this->xdebug("Contract $qname");
if (strrpos($qname, ':')) {
// get unqualified name
$name = substr($qname, strrpos($qname, ':') + 1);
// get ns
$ns = substr($qname, 0, strrpos($qname, ':'));
$p = $this->getPrefixFromNamespace($ns);
if ($p) {
return $p . ':' . $name;
}
return $qname;
} else {
return $qname;
}
}
| debug | ( | $ | string | ) |
adds debug data to the instance debug string with formatting
| string | $string debug data private |
Definition at line 276 of file nusoap.php.
References appendDebug(), and getmicrotime().
{
if ($this->debugLevel > 0) {
$this->appendDebug($this->getmicrotime().' '.get_class($this).": $string\n");
}
}
| debug | ( | $ | string | ) |
adds debug data to the instance debug string with formatting
| string | $string debug data private |
Definition at line 276 of file class.nusoap_base.php.
References appendDebug(), and getmicrotime().
Referenced by nusoap_client::_getProxyClassCode(), soap_transport_http::buildPayload(), nusoap_parser::buildVal(), nusoap_client::call(), nusoap_client::checkCookies(), nusoap_client::checkWSDL(), soap_transport_http::connect(), soap_transport_http::decodeChunked(), nusoap_parser::decodeSimple(), wsdl::end_element(), wsdl::fetchWSDL(), soap_transport_http::getCookiesForRequest(), nusoap_server_mime::getHTTPBody(), nusoap_client_mime::getHTTPBody(), nusoap_client::getOperationData(), nusoap_client::getProxy(), soap_transport_http::getResponse(), wsdl::getTypeDef(), nusoap_server::invoke_method(), nusoap_client::loadWSDL(), nusoap_client::nusoap_client(), nusoap_parser::nusoap_parser(), nusoap_server::nusoap_server(), nusoap_xmlschema::nusoap_xmlschema(), wsdl::parametersMatchWrapped(), nusoap_server::parse_http_headers(), nusoap_server::parse_request(), nusoap_xmlschema::parseFile(), nusoap_server_mime::parseRequest(), nusoap_server::parseRequest(), nusoap_client_mime::parseResponse(), nusoap_client::parseResponse(), nusoap_xmlschema::parseString(), wsdl::parseWSDL(), nusoap_client::send(), soap_transport_http::send(), nusoap_server::send_response(), soap_transport_http::sendRequest(), nusoap_server::serialize_return(), serialize_val(), wsdl::serializeComplexTypeAttributes(), wsdl::serializeComplexTypeElements(), serializeEnvelope(), wsdl::serializeParameters(), wsdl::serializeRPCParameters(), wsdl::serializeType(), nusoap_server::service(), wsdl::setCredentials(), nusoap_client::setCredentials(), soap_transport_http::setCredentials(), nusoap_client::setCurlOption(), soap_transport_http::setCurlOption(), nusoap_client::setEndpoint(), soap_transport_http::setHeader(), nusoap_client::setHeaders(), nusoap_client::setHTTPEncoding(), soap_transport_http::setProxy(), soap_transport_http::setURL(), nusoap_client::setUseCURL(), soap_transport_http::soap_transport_http(), wsdl::start_element(), nusoap_parser::start_element(), soap_transport_http::unsetHeader(), nusoap_client::UpdateCookies(), nusoap_client::useHTTPPersistentConnection(), wsdl::wsdl(), and nusoap_xmlschema::xdebug().
{
if ($this->debugLevel > 0) {
$this->appendDebug($this->getmicrotime().' '.get_class($this).": $string\n");
}
}
| expandEntities | ( | $ | val | ) |
expands entities, e.g. changes '<' to '<'.
| string | $val The string in which to expand entities. private |
Definition at line 342 of file nusoap.php.
{
if ($this->charencoding) {
$val = str_replace('&', '&', $val);
$val = str_replace("'", ''', $val);
$val = str_replace('"', '"', $val);
$val = str_replace('<', '<', $val);
$val = str_replace('>', '>', $val);
}
return $val;
}
| expandEntities | ( | $ | val | ) |
expands entities, e.g. changes '<' to '<'.
| string | $val The string in which to expand entities. private |
Definition at line 342 of file class.nusoap_base.php.
Referenced by serialize_val(), wsdl::serializeComplexTypeAttributes(), and wsdl::serializeType().
{
if ($this->charencoding) {
$val = str_replace('&', '&', $val);
$val = str_replace("'", ''', $val);
$val = str_replace('"', '"', $val);
$val = str_replace('<', '<', $val);
$val = str_replace('>', '>', $val);
}
return $val;
}
| expandQname | ( | $ | qname | ) |
expands (changes prefix to namespace) a qualified name
| string | $qname qname |
Definition at line 766 of file class.nusoap_base.php.
References $name.
Referenced by wsdl::addComplexType(), wsdl::addSimpleType(), nusoap_xmlschema::schemaStartElement(), and wsdl::start_element().
{
// get element prefix
if(strpos($qname,':') && !ereg('^http://',$qname)){
// get unqualified name
$name = substr(strstr($qname,':'),1);
// get ns prefix
$prefix = substr($qname,0,strpos($qname,':'));
if(isset($this->namespaces[$prefix])){
return $this->namespaces[$prefix].':'.$name;
} else {
return $qname;
}
} else {
return $qname;
}
}
| expandQname | ( | $ | qname | ) |
expands (changes prefix to namespace) a qualified name
| string | $qname qname |
Definition at line 766 of file nusoap.php.
References $name.
{
// get element prefix
if(strpos($qname,':') && !ereg('^http://',$qname)){
// get unqualified name
$name = substr(strstr($qname,':'),1);
// get ns prefix
$prefix = substr($qname,0,strpos($qname,':'));
if(isset($this->namespaces[$prefix])){
return $this->namespaces[$prefix].':'.$name;
} else {
return $qname;
}
} else {
return $qname;
}
}
| formatDump | ( | $ | str | ) |
formats a string to be inserted into an HTML stream
| string | $str The string to format |
Definition at line 729 of file class.nusoap_base.php.
{
$str = htmlspecialchars($str);
return nl2br($str);
}
| formatDump | ( | $ | str | ) |
formats a string to be inserted into an HTML stream
| string | $str The string to format |
Definition at line 729 of file nusoap.php.
{
$str = htmlspecialchars($str);
return nl2br($str);
}
| & getDebug | ( | ) |
gets the current debug data for this instance
Definition at line 313 of file class.nusoap_base.php.
Referenced by nusoap_server::fault().
{
// it would be nice to use a memory stream here to use
// memory more efficiently
return $this->debug_str;
}
| & getDebug | ( | ) |
gets the current debug data for this instance
Definition at line 313 of file nusoap.php.
{
// it would be nice to use a memory stream here to use
// memory more efficiently
return $this->debug_str;
}
| & getDebugAsXMLComment | ( | ) |
gets the current debug data for this instance as an XML comment this may change the contents of the debug data
Definition at line 326 of file nusoap.php.
{
// it would be nice to use a memory stream here to use
// memory more efficiently
while (strpos($this->debug_str, '--')) {
$this->debug_str = str_replace('--', '- -', $this->debug_str);
}
$ret = "<!--\n" . $this->debug_str . "\n-->";
return $ret;
}
| & getDebugAsXMLComment | ( | ) |
gets the current debug data for this instance as an XML comment this may change the contents of the debug data
Definition at line 326 of file class.nusoap_base.php.
Referenced by nusoap_server::send_response(), and nusoap_server::service().
{
// it would be nice to use a memory stream here to use
// memory more efficiently
while (strpos($this->debug_str, '--')) {
$this->debug_str = str_replace('--', '- -', $this->debug_str);
}
$ret = "<!--\n" . $this->debug_str . "\n-->";
return $ret;
}
| getDebugLevel | ( | ) |
gets the debug level for this instance
Definition at line 256 of file class.nusoap_base.php.
{
return $this->debugLevel;
}
| getDebugLevel | ( | ) |
gets the debug level for this instance
Definition at line 256 of file nusoap.php.
{
return $this->debugLevel;
}
| getError | ( | ) |
returns error string if present
Definition at line 359 of file nusoap.php.
{
if($this->error_str != ''){
return $this->error_str;
}
return false;
}
| getError | ( | ) |
returns error string if present
Definition at line 359 of file class.nusoap_base.php.
Referenced by nusoap_client::_getProxyClassCode(), nusoap_client::call(), nusoap_client::getOperationData(), nusoap_client::getProxy(), wsdl::parseWSDL(), and nusoap_client::send().
{
if($this->error_str != ''){
return $this->error_str;
}
return false;
}
| getGlobalDebugLevel | ( | ) |
gets the global debug level, which applies to future instances
Definition at line 236 of file class.nusoap_base.php.
{
return $GLOBALS['_transient']['static']['nusoap_base']->globalDebugLevel;
}
| getGlobalDebugLevel | ( | ) |
gets the global debug level, which applies to future instances
Definition at line 236 of file nusoap.php.
{
return $GLOBALS['_transient']['static']['nusoap_base']->globalDebugLevel;
}
| getLocalPart | ( | $ | str | ) |
returns the local part of a prefixed string returns the original string, if not prefixed
| string | $str The prefixed string |
Definition at line 791 of file class.nusoap_base.php.
Referenced by wsdl::addOperation(), nusoap_xmlschema::schemaEndElement(), nusoap_xmlschema::schemaStartElement(), wsdl::serialize(), wsdl::serializeComplexTypeAttributes(), wsdl::serializeComplexTypeElements(), wsdl::serializeType(), wsdl::start_element(), and nusoap_parser::start_element().
{
if($sstr = strrchr($str,':')){
// get unqualified name
return substr( $sstr, 1 );
} else {
return $str;
}
}
| getLocalPart | ( | $ | str | ) |
returns the local part of a prefixed string returns the original string, if not prefixed
| string | $str The prefixed string |
Definition at line 791 of file nusoap.php.
{
if($sstr = strrchr($str,':')){
// get unqualified name
return substr( $sstr, 1 );
} else {
return $str;
}
}
| getmicrotime | ( | ) |
returns the time in ODBC canonical form with microseconds
Definition at line 855 of file class.nusoap_base.php.
References strftime, and time.
Referenced by debug().
| getmicrotime | ( | ) |
returns the time in ODBC canonical form with microseconds
Definition at line 855 of file nusoap.php.
| getNamespaceFromPrefix | ( | $ | prefix | ) |
pass it a prefix, it returns a namespace
| string | $prefix The prefix |
Definition at line 823 of file nusoap.php.
{
if (isset($this->namespaces[$prefix])) {
return $this->namespaces[$prefix];
}
//$this->setError("No namespace registered for prefix '$prefix'");
return false;
}
| getNamespaceFromPrefix | ( | $ | prefix | ) |
pass it a prefix, it returns a namespace
| string | $prefix The prefix |
Definition at line 823 of file class.nusoap_base.php.
Referenced by wsdl::addOperation(), wsdl::parametersMatchWrapped(), nusoap_xmlschema::schemaStartElement(), wsdl::serialize(), wsdl::serializeComplexTypeAttributes(), wsdl::serializeComplexTypeElements(), and wsdl::serializeType().
{
if (isset($this->namespaces[$prefix])) {
return $this->namespaces[$prefix];
}
//$this->setError("No namespace registered for prefix '$prefix'");
return false;
}
| getPrefix | ( | $ | str | ) |
returns the prefix part of a prefixed string returns false, if not prefixed
| string | $str The prefixed string |
Definition at line 808 of file nusoap.php.
{
if($pos = strrpos($str,':')){
// get prefix
return substr($str,0,$pos);
}
return false;
}
| getPrefix | ( | $ | str | ) |
returns the prefix part of a prefixed string returns false, if not prefixed
| string | $str The prefixed string |
Definition at line 808 of file class.nusoap_base.php.
Referenced by nusoap_xmlschema::addElement(), wsdl::addOperation(), nusoap_xmlschema::schemaEndElement(), nusoap_xmlschema::schemaStartElement(), wsdl::serialize(), wsdl::serializeComplexTypeAttributes(), wsdl::serializeComplexTypeElements(), wsdl::serializeType(), and nusoap_parser::start_element().
{
if($pos = strrpos($str,':')){
// get prefix
return substr($str,0,$pos);
}
return false;
}
| getPrefixFromNamespace | ( | $ | ns | ) |
returns the prefix for a given namespace (or prefix) or false if no prefixes registered for the given namespace
| string | $ns The namespace |
Definition at line 839 of file nusoap.php.
{
foreach ($this->namespaces as $p => $n) {
if ($ns == $n || $ns == $p) {
$this->usedNamespaces[$p] = $n;
return $p;
}
}
return false;
}
| getPrefixFromNamespace | ( | $ | ns | ) |
returns the prefix for a given namespace (or prefix) or false if no prefixes registered for the given namespace
| string | $ns The namespace |
Definition at line 839 of file class.nusoap_base.php.
Referenced by contractQname(), nusoap_xmlschema::schemaStartElement(), wsdl::serialize(), nusoap_xmlschema::serializeSchema(), wsdl::serializeType(), and wsdl::start_element().
{
foreach ($this->namespaces as $p => $n) {
if ($ns == $n || $ns == $p) {
$this->usedNamespaces[$p] = $n;
return $p;
}
}
return false;
}
| isArraySimpleOrStruct | ( | $ | val | ) |
detect if array is a simple array or a struct (associative array)
| mixed | $val The PHP array |
Definition at line 383 of file nusoap.php.
{
$keyList = array_keys($val);
foreach ($keyList as $keyListValue) {
if (!is_int($keyListValue)) {
return 'arrayStruct';
}
}
return 'arraySimple';
}
| isArraySimpleOrStruct | ( | $ | val | ) |
detect if array is a simple array or a struct (associative array)
| mixed | $val The PHP array |
Definition at line 383 of file class.nusoap_base.php.
Referenced by wsdl::parametersMatchWrapped(), serialize_val(), wsdl::serializeComplexTypeElements(), wsdl::serializeParameters(), and wsdl::serializeRPCParameters().
{
$keyList = array_keys($val);
foreach ($keyList as $keyListValue) {
if (!is_int($keyListValue)) {
return 'arrayStruct';
}
}
return 'arraySimple';
}
| nusoap_base | ( | ) |
constructor
public
Definition at line 226 of file class.nusoap_base.php.
Referenced by nusoap_client::nusoap_client(), nusoap_fault::nusoap_fault(), nusoap_parser::nusoap_parser(), nusoap_server::nusoap_server(), nusoap_xmlschema::nusoap_xmlschema(), soap_transport_http::soap_transport_http(), soapval::soapval(), and wsdl::wsdl().
{
$this->debugLevel = $GLOBALS['_transient']['static']['nusoap_base']->globalDebugLevel;
}
| nusoap_base | ( | ) |
constructor
public
Definition at line 226 of file nusoap.php.
{
$this->debugLevel = $GLOBALS['_transient']['static']['nusoap_base']->globalDebugLevel;
}
| serialize_val | ( | $ | val, | |
| $ | name = false, |
|||
| $ | type = false, |
|||
| $ | name_ns = false, |
|||
| $ | type_ns = false, |
|||
| $ | attributes = false, |
|||
| $ | use = 'encoded', |
|||
| $ | soapval = false | |||
| ) |
serializes PHP values in accordance w/ section 5. Type information is not serialized if $use == 'literal'.
| mixed | $val The value to serialize | |
| string | $name The name (local part) of the XML element | |
| string | $type The XML schema type (local part) for the element | |
| string | $name_ns The namespace for the name of the XML element | |
| string | $type_ns The namespace for the type of the element | |
| array | $attributes The attributes to serialize as name=>value pairs | |
| string | $use The WSDL "use" (encoded|literal) | |
| boolean | $soapval Whether this is called from soapval. |
Definition at line 408 of file nusoap.php.
References $name, $type, appendDebug(), count, debug(), elseif, expandEntities(), isArraySimpleOrStruct(), serialize_val(), and varDump().
{
$this->debug("in serialize_val: name=$name, type=$type, name_ns=$name_ns, type_ns=$type_ns, use=$use, soapval=$soapval");
$this->appendDebug('value=' . $this->varDump($val));
$this->appendDebug('attributes=' . $this->varDump($attributes));
if (is_object($val) && get_class($val) == 'soapval' && (! $soapval)) {
$this->debug("serialize_val: serialize soapval");
$xml = $val->serialize($use);
$this->appendDebug($val->getDebug());
$val->clearDebug();
$this->debug("serialize_val of soapval returning $xml");
return $xml;
}
// force valid name if necessary
if (is_numeric($name)) {
$name = '__numeric_' . $name;
} elseif (! $name) {
$name = 'noname';
}
// if name has ns, add ns prefix to name
$xmlns = '';
if($name_ns){
$prefix = 'nu'.rand(1000,9999);
$name = $prefix.':'.$name;
$xmlns .= " xmlns:$prefix=\"$name_ns\"";
}
// if type is prefixed, create type prefix
if($type_ns != '' && $type_ns == $this->namespaces['xsd']){
// need to fix this. shouldn't default to xsd if no ns specified
// w/o checking against typemap
$type_prefix = 'xsd';
} elseif($type_ns){
$type_prefix = 'ns'.rand(1000,9999);
$xmlns .= " xmlns:$type_prefix=\"$type_ns\"";
}
// serialize attributes if present
$atts = '';
if($attributes){
foreach($attributes as $k => $v){
$atts .= " $k=\"".$this->expandEntities($v).'"';
}
}
// serialize null value
if (is_null($val)) {
$this->debug("serialize_val: serialize null");
if ($use == 'literal') {
// TODO: depends on minOccurs
$xml = "<$name$xmlns$atts/>";
$this->debug("serialize_val returning $xml");
return $xml;
} else {
if (isset($type) && isset($type_prefix)) {
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = '';
}
$xml = "<$name$xmlns$type_str$atts xsi:nil=\"true\"/>";
$this->debug("serialize_val returning $xml");
return $xml;
}
}
// serialize if an xsd built-in primitive type
if($type != '' && isset($this->typemap[$this->XMLSchemaVersion][$type])){
$this->debug("serialize_val: serialize xsd built-in primitive type");
if (is_bool($val)) {
if ($type == 'boolean') {
$val = $val ? 'true' : 'false';
} elseif (! $val) {
$val = 0;
}
} else if (is_string($val)) {
$val = $this->expandEntities($val);
}
if ($use == 'literal') {
$xml = "<$name$xmlns$atts>$val</$name>";
$this->debug("serialize_val returning $xml");
return $xml;
} else {
$xml = "<$name$xmlns xsi:type=\"xsd:$type\"$atts>$val</$name>";
$this->debug("serialize_val returning $xml");
return $xml;
}
}
// detect type and serialize
$xml = '';
switch(true) {
case (is_bool($val) || $type == 'boolean'):
$this->debug("serialize_val: serialize boolean");
if ($type == 'boolean') {
$val = $val ? 'true' : 'false';
} elseif (! $val) {
$val = 0;
}
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$val</$name>";
} else {
$xml .= "<$name$xmlns xsi:type=\"xsd:boolean\"$atts>$val</$name>";
}
break;
case (is_int($val) || is_long($val) || $type == 'int'):
$this->debug("serialize_val: serialize int");
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$val</$name>";
} else {
$xml .= "<$name$xmlns xsi:type=\"xsd:int\"$atts>$val</$name>";
}
break;
case (is_float($val)|| is_double($val) || $type == 'float'):
$this->debug("serialize_val: serialize float");
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$val</$name>";
} else {
$xml .= "<$name$xmlns xsi:type=\"xsd:float\"$atts>$val</$name>";
}
break;
case (is_string($val) || $type == 'string'):
$this->debug("serialize_val: serialize string");
$val = $this->expandEntities($val);
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$val</$name>";
} else {
$xml .= "<$name$xmlns xsi:type=\"xsd:string\"$atts>$val</$name>";
}
break;
case is_object($val):
$this->debug("serialize_val: serialize object");
if (get_class($val) == 'soapval') {
$this->debug("serialize_val: serialize soapval object");
$pXml = $val->serialize($use);
$this->appendDebug($val->getDebug());
$val->clearDebug();
} else {
if (! $name) {
$name = get_class($val);
$this->debug("In serialize_val, used class name $name as element name");
} else {
$this->debug("In serialize_val, do not override name $name for element name for class " . get_class($val));
}
foreach(get_object_vars($val) as $k => $v){
$pXml = isset($pXml) ? $pXml.$this->serialize_val($v,$k,false,false,false,false,$use) : $this->serialize_val($v,$k,false,false,false,false,$use);
}
}
if(isset($type) && isset($type_prefix)){
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = '';
}
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$pXml</$name>";
} else {
$xml .= "<$name$xmlns$type_str$atts>$pXml</$name>";
}
break;
break;
case (is_array($val) || $type):
// detect if struct or array
$valueType = $this->isArraySimpleOrStruct($val);
if($valueType=='arraySimple' || ereg('^ArrayOf',$type)){
$this->debug("serialize_val: serialize array");
$i = 0;
if(is_array($val) && count($val)> 0){
foreach($val as $v){
if(is_object($v) && get_class($v) == 'soapval'){
$tt_ns = $v->type_ns;
$tt = $v->type;
} elseif (is_array($v)) {
$tt = $this->isArraySimpleOrStruct($v);
} else {
$tt = gettype($v);
}
$array_types[$tt] = 1;
// TODO: for literal, the name should be $name
$xml .= $this->serialize_val($v,'item',false,false,false,false,$use);
++$i;
}
if(count($array_types) > 1){
$array_typename = 'xsd:anyType';
} elseif(isset($tt) && isset($this->typemap[$this->XMLSchemaVersion][$tt])) {
if ($tt == 'integer') {
$tt = 'int';
}
$array_typename = 'xsd:'.$tt;
} elseif(isset($tt) && $tt == 'arraySimple'){
$array_typename = 'SOAP-ENC:Array';
} elseif(isset($tt) && $tt == 'arrayStruct'){
$array_typename = 'unnamed_struct_use_soapval';
} else {
// if type is prefixed, create type prefix
if ($tt_ns != '' && $tt_ns == $this->namespaces['xsd']){
$array_typename = 'xsd:' . $tt;
} elseif ($tt_ns) {
$tt_prefix = 'ns' . rand(1000, 9999);
$array_typename = "$tt_prefix:$tt";
$xmlns .= " xmlns:$tt_prefix=\"$tt_ns\"";
} else {
$array_typename = $tt;
}
}
$array_type = $i;
if ($use == 'literal') {
$type_str = '';
} else if (isset($type) && isset($type_prefix)) {
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = " xsi:type=\"SOAP-ENC:Array\" SOAP-ENC:arrayType=\"".$array_typename."[$array_type]\"";
}
// empty array
} else {
if ($use == 'literal') {
$type_str = '';
} else if (isset($type) && isset($type_prefix)) {
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = " xsi:type=\"SOAP-ENC:Array\" SOAP-ENC:arrayType=\"xsd:anyType[0]\"";
}
}
// TODO: for array in literal, there is no wrapper here
$xml = "<$name$xmlns$type_str$atts>".$xml."</$name>";
} else {
// got a struct
$this->debug("serialize_val: serialize struct");
if(isset($type) && isset($type_prefix)){
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = '';
}
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>";
} else {
$xml .= "<$name$xmlns$type_str$atts>";
}
foreach($val as $k => $v){
// Apache Map
if ($type == 'Map' && $type_ns == 'http://xml.apache.org/xml-soap') {
$xml .= '<item>';
$xml .= $this->serialize_val($k,'key',false,false,false,false,$use);
$xml .= $this->serialize_val($v,'value',false,false,false,false,$use);
$xml .= '</item>';
} else {
$xml .= $this->serialize_val($v,$k,false,false,false,false,$use);
}
}
$xml .= "</$name>";
}
break;
default:
$this->debug("serialize_val: serialize unknown");
$xml .= 'not detected, got '.gettype($val).' for '.$val;
break;
}
$this->debug("serialize_val returning $xml");
return $xml;
}
| serialize_val | ( | $ | val, | |
| $ | name = false, |
|||
| $ | type = false, |
|||
| $ | name_ns = false, |
|||
| $ | type_ns = false, |
|||
| $ | attributes = false, |
|||
| $ | use = 'encoded', |
|||
| $ | soapval = false | |||
| ) |
serializes PHP values in accordance w/ section 5. Type information is not serialized if $use == 'literal'.
| mixed | $val The value to serialize | |
| string | $name The name (local part) of the XML element | |
| string | $type The XML schema type (local part) for the element | |
| string | $name_ns The namespace for the name of the XML element | |
| string | $type_ns The namespace for the type of the element | |
| array | $attributes The attributes to serialize as name=>value pairs | |
| string | $use The WSDL "use" (encoded|literal) | |
| boolean | $soapval Whether this is called from soapval. |
Definition at line 408 of file class.nusoap_base.php.
References $name, $type, appendDebug(), count, debug(), elseif, expandEntities(), isArraySimpleOrStruct(), and varDump().
Referenced by nusoap_client::call(), soapval::serialize(), nusoap_fault::serialize(), nusoap_server::serialize_return(), serialize_val(), wsdl::serializeComplexTypeElements(), serializeEnvelope(), and wsdl::serializeType().
{
$this->debug("in serialize_val: name=$name, type=$type, name_ns=$name_ns, type_ns=$type_ns, use=$use, soapval=$soapval");
$this->appendDebug('value=' . $this->varDump($val));
$this->appendDebug('attributes=' . $this->varDump($attributes));
if (is_object($val) && get_class($val) == 'soapval' && (! $soapval)) {
$this->debug("serialize_val: serialize soapval");
$xml = $val->serialize($use);
$this->appendDebug($val->getDebug());
$val->clearDebug();
$this->debug("serialize_val of soapval returning $xml");
return $xml;
}
// force valid name if necessary
if (is_numeric($name)) {
$name = '__numeric_' . $name;
} elseif (! $name) {
$name = 'noname';
}
// if name has ns, add ns prefix to name
$xmlns = '';
if($name_ns){
$prefix = 'nu'.rand(1000,9999);
$name = $prefix.':'.$name;
$xmlns .= " xmlns:$prefix=\"$name_ns\"";
}
// if type is prefixed, create type prefix
if($type_ns != '' && $type_ns == $this->namespaces['xsd']){
// need to fix this. shouldn't default to xsd if no ns specified
// w/o checking against typemap
$type_prefix = 'xsd';
} elseif($type_ns){
$type_prefix = 'ns'.rand(1000,9999);
$xmlns .= " xmlns:$type_prefix=\"$type_ns\"";
}
// serialize attributes if present
$atts = '';
if($attributes){
foreach($attributes as $k => $v){
$atts .= " $k=\"".$this->expandEntities($v).'"';
}
}
// serialize null value
if (is_null($val)) {
$this->debug("serialize_val: serialize null");
if ($use == 'literal') {
// TODO: depends on minOccurs
$xml = "<$name$xmlns$atts/>";
$this->debug("serialize_val returning $xml");
return $xml;
} else {
if (isset($type) && isset($type_prefix)) {
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = '';
}
$xml = "<$name$xmlns$type_str$atts xsi:nil=\"true\"/>";
$this->debug("serialize_val returning $xml");
return $xml;
}
}
// serialize if an xsd built-in primitive type
if($type != '' && isset($this->typemap[$this->XMLSchemaVersion][$type])){
$this->debug("serialize_val: serialize xsd built-in primitive type");
if (is_bool($val)) {
if ($type == 'boolean') {
$val = $val ? 'true' : 'false';
} elseif (! $val) {
$val = 0;
}
} else if (is_string($val)) {
$val = $this->expandEntities($val);
}
if ($use == 'literal') {
$xml = "<$name$xmlns$atts>$val</$name>";
$this->debug("serialize_val returning $xml");
return $xml;
} else {
$xml = "<$name$xmlns xsi:type=\"xsd:$type\"$atts>$val</$name>";
$this->debug("serialize_val returning $xml");
return $xml;
}
}
// detect type and serialize
$xml = '';
switch(true) {
case (is_bool($val) || $type == 'boolean'):
$this->debug("serialize_val: serialize boolean");
if ($type == 'boolean') {
$val = $val ? 'true' : 'false';
} elseif (! $val) {
$val = 0;
}
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$val</$name>";
} else {
$xml .= "<$name$xmlns xsi:type=\"xsd:boolean\"$atts>$val</$name>";
}
break;
case (is_int($val) || is_long($val) || $type == 'int'):
$this->debug("serialize_val: serialize int");
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$val</$name>";
} else {
$xml .= "<$name$xmlns xsi:type=\"xsd:int\"$atts>$val</$name>";
}
break;
case (is_float($val)|| is_double($val) || $type == 'float'):
$this->debug("serialize_val: serialize float");
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$val</$name>";
} else {
$xml .= "<$name$xmlns xsi:type=\"xsd:float\"$atts>$val</$name>";
}
break;
case (is_string($val) || $type == 'string'):
$this->debug("serialize_val: serialize string");
$val = $this->expandEntities($val);
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$val</$name>";
} else {
$xml .= "<$name$xmlns xsi:type=\"xsd:string\"$atts>$val</$name>";
}
break;
case is_object($val):
$this->debug("serialize_val: serialize object");
if (get_class($val) == 'soapval') {
$this->debug("serialize_val: serialize soapval object");
$pXml = $val->serialize($use);
$this->appendDebug($val->getDebug());
$val->clearDebug();
} else {
if (! $name) {
$name = get_class($val);
$this->debug("In serialize_val, used class name $name as element name");
} else {
$this->debug("In serialize_val, do not override name $name for element name for class " . get_class($val));
}
foreach(get_object_vars($val) as $k => $v){
$pXml = isset($pXml) ? $pXml.$this->serialize_val($v,$k,false,false,false,false,$use) : $this->serialize_val($v,$k,false,false,false,false,$use);
}
}
if(isset($type) && isset($type_prefix)){
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = '';
}
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>$pXml</$name>";
} else {
$xml .= "<$name$xmlns$type_str$atts>$pXml</$name>";
}
break;
break;
case (is_array($val) || $type):
// detect if struct or array
$valueType = $this->isArraySimpleOrStruct($val);
if($valueType=='arraySimple' || ereg('^ArrayOf',$type)){
$this->debug("serialize_val: serialize array");
$i = 0;
if(is_array($val) && count($val)> 0){
foreach($val as $v){
if(is_object($v) && get_class($v) == 'soapval'){
$tt_ns = $v->type_ns;
$tt = $v->type;
} elseif (is_array($v)) {
$tt = $this->isArraySimpleOrStruct($v);
} else {
$tt = gettype($v);
}
$array_types[$tt] = 1;
// TODO: for literal, the name should be $name
$xml .= $this->serialize_val($v,'item',false,false,false,false,$use);
++$i;
}
if(count($array_types) > 1){
$array_typename = 'xsd:anyType';
} elseif(isset($tt) && isset($this->typemap[$this->XMLSchemaVersion][$tt])) {
if ($tt == 'integer') {
$tt = 'int';
}
$array_typename = 'xsd:'.$tt;
} elseif(isset($tt) && $tt == 'arraySimple'){
$array_typename = 'SOAP-ENC:Array';
} elseif(isset($tt) && $tt == 'arrayStruct'){
$array_typename = 'unnamed_struct_use_soapval';
} else {
// if type is prefixed, create type prefix
if ($tt_ns != '' && $tt_ns == $this->namespaces['xsd']){
$array_typename = 'xsd:' . $tt;
} elseif ($tt_ns) {
$tt_prefix = 'ns' . rand(1000, 9999);
$array_typename = "$tt_prefix:$tt";
$xmlns .= " xmlns:$tt_prefix=\"$tt_ns\"";
} else {
$array_typename = $tt;
}
}
$array_type = $i;
if ($use == 'literal') {
$type_str = '';
} else if (isset($type) && isset($type_prefix)) {
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = " xsi:type=\"SOAP-ENC:Array\" SOAP-ENC:arrayType=\"".$array_typename."[$array_type]\"";
}
// empty array
} else {
if ($use == 'literal') {
$type_str = '';
} else if (isset($type) && isset($type_prefix)) {
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = " xsi:type=\"SOAP-ENC:Array\" SOAP-ENC:arrayType=\"xsd:anyType[0]\"";
}
}
// TODO: for array in literal, there is no wrapper here
$xml = "<$name$xmlns$type_str$atts>".$xml."</$name>";
} else {
// got a struct
$this->debug("serialize_val: serialize struct");
if(isset($type) && isset($type_prefix)){
$type_str = " xsi:type=\"$type_prefix:$type\"";
} else {
$type_str = '';
}
if ($use == 'literal') {
$xml .= "<$name$xmlns$atts>";
} else {
$xml .= "<$name$xmlns$type_str$atts>";
}
foreach($val as $k => $v){
// Apache Map
if ($type == 'Map' && $type_ns == 'http://xml.apache.org/xml-soap') {
$xml .= '<item>';
$xml .= $this->serialize_val($k,'key',false,false,false,false,$use);
$xml .= $this->serialize_val($v,'value',false,false,false,false,$use);
$xml .= '</item>';
} else {
$xml .= $this->serialize_val($v,$k,false,false,false,false,$use);
}
}
$xml .= "</$name>";
}
break;
default:
$this->debug("serialize_val: serialize unknown");
$xml .= 'not detected, got '.gettype($val).' for '.$val;
break;
}
$this->debug("serialize_val returning $xml");
return $xml;
}
| serializeEnvelope | ( | $ | body, | |
| $ | headers = false, |
|||
| $ | namespaces = array(), |
|||
| $ | style = 'rpc', |
|||
| $ | use = 'encoded', |
|||
| $ | encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/' | |||
| ) |
serializes a message
| string | $body the XML of the SOAP body | |
| mixed | $headers optional string of XML with SOAP header content, or array of soapval objects for SOAP headers, or associative array | |
| array | $namespaces optional the namespaces used in generating the body and headers | |
| string | $style optional (rpc|document) | |
| string | $use optional (encoded|literal) | |
| string | $encodingStyle optional (usually 'http://schemas.xmlsoap.org/soap/encoding/' for encoded) |
Definition at line 674 of file nusoap.php.
References $namespaces, appendDebug(), debug(), serialize_val(), and varDump().
://schemas.xmlsoap.org/soap/encoding/'){ // TODO: add an option to automatically run utf8_encode on $body and $headers // if $this->soap_defencoding is UTF-8. Not doing this automatically allows // one to send arbitrary UTF-8 characters, not just characters that map to ISO-8859-1 $this->debug("In serializeEnvelope length=" . strlen($body) . " body (max 1000 characters)=" . substr($body, 0, 1000) . " style=$style use=$use encodingStyle=$encodingStyle"); $this->debug("headers:"); $this->appendDebug($this->varDump($headers)); $this->debug("namespaces:"); $this->appendDebug($this->varDump($namespaces)); // serialize namespaces $ns_string = ''; foreach(array_merge($this->namespaces,$namespaces) as $k => $v){ $ns_string .= " xmlns:$k=\"$v\""; } if($encodingStyle) { $ns_string = " SOAP-ENV:encodingStyle=\"$encodingStyle\"$ns_string"; } // serialize headers if($headers){ if (is_array($headers)) { $xml = ''; foreach ($headers as $k => $v) { if (is_object($v) && get_class($v) == 'soapval') { $xml .= $this->serialize_val($v, false, false, false, false, false, $use); } else { $xml .= $this->serialize_val($v, $k, false, false, false, false, $use); } } $headers = $xml; $this->debug("In serializeEnvelope, serialized array of headers to $headers"); } $headers = "<SOAP-ENV:Header>".$headers."</SOAP-ENV:Header>"; } // serialize envelope return '<?xml version="1.0" encoding="'.$this->soap_defencoding .'"?'.">". '<SOAP-ENV:Envelope'.$ns_string.">". $headers. "<SOAP-ENV:Body>". $body. "</SOAP-ENV:Body>". "</SOAP-ENV:Envelope>"; }
| serializeEnvelope | ( | $ | body, | |
| $ | headers = false, |
|||
| $ | namespaces = array(), |
|||
| $ | style = 'rpc', |
|||
| $ | use = 'encoded', |
|||
| $ | encodingStyle = 'http://schemas.xmlsoap.org/soap/encoding/' | |||
| ) |
serializes a message
| string | $body the XML of the SOAP body | |
| mixed | $headers optional string of XML with SOAP header content, or array of soapval objects for SOAP headers, or associative array | |
| array | $namespaces optional the namespaces used in generating the body and headers | |
| string | $style optional (rpc|document) | |
| string | $use optional (encoded|literal) | |
| string | $encodingStyle optional (usually 'http://schemas.xmlsoap.org/soap/encoding/' for encoded) |
Definition at line 674 of file class.nusoap_base.php.
References $namespaces, appendDebug(), debug(), serialize_val(), and varDump().
Referenced by nusoap_client::call(), and nusoap_server::serialize_return().
://schemas.xmlsoap.org/soap/encoding/'){ // TODO: add an option to automatically run utf8_encode on $body and $headers // if $this->soap_defencoding is UTF-8. Not doing this automatically allows // one to send arbitrary UTF-8 characters, not just characters that map to ISO-8859-1 $this->debug("In serializeEnvelope length=" . strlen($body) . " body (max 1000 characters)=" . substr($body, 0, 1000) . " style=$style use=$use encodingStyle=$encodingStyle"); $this->debug("headers:"); $this->appendDebug($this->varDump($headers)); $this->debug("namespaces:"); $this->appendDebug($this->varDump($namespaces)); // serialize namespaces $ns_string = ''; foreach(array_merge($this->namespaces,$namespaces) as $k => $v){ $ns_string .= " xmlns:$k=\"$v\""; } if($encodingStyle) { $ns_string = " SOAP-ENV:encodingStyle=\"$encodingStyle\"$ns_string"; } // serialize headers if($headers){ if (is_array($headers)) { $xml = ''; foreach ($headers as $k => $v) { if (is_object($v) && get_class($v) == 'soapval') { $xml .= $this->serialize_val($v, false, false, false, false, false, $use); } else { $xml .= $this->serialize_val($v, $k, false, false, false, false, $use); } } $headers = $xml; $this->debug("In serializeEnvelope, serialized array of headers to $headers"); } $headers = "<SOAP-ENV:Header>".$headers."</SOAP-ENV:Header>"; } // serialize envelope return '<?xml version="1.0" encoding="'.$this->soap_defencoding .'"?'.">". '<SOAP-ENV:Envelope'.$ns_string.">". $headers. "<SOAP-ENV:Body>". $body. "</SOAP-ENV:Body>". "</SOAP-ENV:Envelope>"; }
| setDebugLevel | ( | $ | level | ) |
sets the debug level for this instance
| int | $level Debug level 0-9, where 0 turns off public |
Definition at line 266 of file class.nusoap_base.php.
References $level.
{
$this->debugLevel = $level;
}
| setDebugLevel | ( | $ | level | ) |
sets the debug level for this instance
| int | $level Debug level 0-9, where 0 turns off public |
Definition at line 266 of file nusoap.php.
References $level.
{
$this->debugLevel = $level;
}
| setError | ( | $ | str | ) |
sets error string
Definition at line 372 of file class.nusoap_base.php.
Referenced by nusoap_client::_getProxyClassCode(), nusoap_client::call(), nusoap_client::checkWSDL(), nusoap_server::configureWSDL(), soap_transport_http::connect(), soap_transport_http::getResponse(), nusoap_parser::nusoap_parser(), nusoap_server::parse_http_headers(), nusoap_xmlschema::parseFile(), nusoap_server_mime::parseRequest(), nusoap_server::parseRequest(), nusoap_client_mime::parseResponse(), nusoap_client::parseResponse(), nusoap_xmlschema::parseString(), wsdl::parseWSDL(), nusoap_server::register(), nusoap_client::send(), soap_transport_http::send(), soap_transport_http::sendRequest(), wsdl::serializeParameters(), wsdl::serializeRPCParameters(), wsdl::serializeType(), and wsdl::webDescription().
{
$this->error_str = $str;
}
| setError | ( | $ | str | ) |
sets error string
Definition at line 372 of file nusoap.php.
{
$this->error_str = $str;
}
| setGlobalDebugLevel | ( | $ | level | ) |
sets the global debug level, which applies to future instances
| int | $level Debug level 0-9, where 0 turns off public |
Definition at line 246 of file nusoap.php.
References $level.
{
$GLOBALS['_transient']['static']['nusoap_base']->globalDebugLevel = $level;
}
| setGlobalDebugLevel | ( | $ | level | ) |
sets the global debug level, which applies to future instances
| int | $level Debug level 0-9, where 0 turns off public |
Definition at line 246 of file class.nusoap_base.php.
References $level.
{
$GLOBALS['_transient']['static']['nusoap_base']->globalDebugLevel = $level;
}
| varDump | ( | $ | data | ) |
Returns a string with the output of var_dump
| mixed | $data The variable to var_dump |
Definition at line 874 of file nusoap.php.
References $data.
{
ob_start();
var_dump($data);
$ret_val = ob_get_contents();
ob_end_clean();
return $ret_val;
}
| varDump | ( | $ | data | ) |
Returns a string with the output of var_dump
| mixed | $data The variable to var_dump |
Definition at line 874 of file class.nusoap_base.php.
References $data.
Referenced by __toString(), nusoap_client::_getProxyClassCode(), nusoap_xmlschema::addComplexType(), nusoap_xmlschema::addElement(), nusoap_xmlschema::addSimpleType(), nusoap_parser::buildVal(), nusoap_client::call(), soap_transport_http::connect(), nusoap_xmlschema::getTypeDef(), wsdl::getTypeDef(), nusoap_server::invoke_method(), nusoap_client::nusoap_client(), nusoap_server::nusoap_server(), wsdl::parametersMatchWrapped(), nusoap_client::parseResponse(), nusoap_xmlschema::schemaStartElement(), nusoap_server::serialize_return(), serialize_val(), serializeEnvelope(), wsdl::serializeParameters(), wsdl::serializeRPCParameters(), wsdl::serializeType(), nusoap_server::service(), wsdl::setCredentials(), nusoap_client::setCredentials(), soap_transport_http::setCredentials(), nusoap_client::setCurlOption(), soap_transport_http::setCurlOption(), nusoap_client::setHeaders(), and soap_transport_http::soap_transport_http().
{
ob_start();
var_dump($data);
$ret_val = ob_get_contents();
ob_end_clean();
return $ret_val;
}
| $charencoding = true |
Definition at line 129 of file class.nusoap_base.php.
| $debug_str = '' |
Definition at line 121 of file class.nusoap_base.php.
| $debugLevel |
Definition at line 136 of file class.nusoap_base.php.
| $error_str = '' |
Definition at line 114 of file class.nusoap_base.php.
| $namespaces |
array(
'SOAP-ENV' => 'http://schemas.xmlsoap.org/soap/envelope/',
'xsd' => 'http://www.w3.org/2001/XMLSchema',
'xsi' => 'http://www.w3.org/2001/XMLSchema-instance',
'SOAP-ENC' => 'http://schemas.xmlsoap.org/soap/encoding/'
)
Reimplemented in nusoap_parser.
Definition at line 163 of file class.nusoap_base.php.
Referenced by nusoap_xmlschema::nusoap_xmlschema(), and serializeEnvelope().
| $revision = '$Revision: 1.51 $' |
Definition at line 107 of file class.nusoap_base.php.
| $soap_defencoding = 'ISO-8859-1' |
Definition at line 152 of file class.nusoap_base.php.
| $title = 'NuSOAP' |
Definition at line 93 of file class.nusoap_base.php.
| $typemap |
array(
'http://www.w3.org/2001/XMLSchema' => array(
'string'=>'string','boolean'=>'boolean','float'=>'double','double'=>'double','decimal'=>'double',
'duration'=>'','dateTime'=>'string','time'=>'string','date'=>'string','gYearMonth'=>'',
'gYear'=>'','gMonthDay'=>'','gDay'=>'','gMonth'=>'','hexBinary'=>'string','base64Binary'=>'string',
'anyType'=>'string','anySimpleType'=>'string',
'normalizedString'=>'string','token'=>'string','language'=>'','NMTOKEN'=>'','NMTOKENS'=>'','Name'=>'','NCName'=>'','ID'=>'',
'IDREF'=>'','IDREFS'=>'','ENTITY'=>'','ENTITIES'=>'','integer'=>'integer','nonPositiveInteger'=>'integer',
'negativeInteger'=>'integer','long'=>'integer','int'=>'integer','short'=>'integer','byte'=>'integer','nonNegativeInteger'=>'integer',
'unsignedLong'=>'','unsignedInt'=>'','unsignedShort'=>'','unsignedByte'=>'','positiveInteger'=>''),
'http://www.w3.org/2000/10/XMLSchema' => array(
'i4'=>'','int'=>'integer','boolean'=>'boolean','string'=>'string','double'=>'double',
'float'=>'double','dateTime'=>'string',
'timeInstant'=>'string','base64Binary'=>'string','base64'=>'string','ur-type'=>'array'),
'http://www.w3.org/1999/XMLSchema' => array(
'i4'=>'','int'=>'integer','boolean'=>'boolean','string'=>'string','double'=>'double',
'float'=>'double','dateTime'=>'string',
'timeInstant'=>'string','base64Binary'=>'string','base64'=>'string','ur-type'=>'array'),
'http://soapinterop.org/xsd' => array('SOAPStruct'=>'struct'),
'http://schemas.xmlsoap.org/soap/encoding/' => array('base64'=>'string','array'=>'array','Array'=>'array'),
'http://xml.apache.org/xml-soap' => array('Map')
)
Definition at line 185 of file class.nusoap_base.php.
| $usedNamespaces = array() |
Definition at line 176 of file class.nusoap_base.php.
Referenced by nusoap_client::call().
| $version = '0.7.3' |
Definition at line 100 of file class.nusoap_base.php.
| $xmlEntities |
array('quot' => '"','amp' => '&', 'lt' => '<','gt' => '>','apos' => "'")
Definition at line 218 of file class.nusoap_base.php.
| $XMLSchemaVersion = 'http://www.w3.org/2001/XMLSchema' |
Definition at line 144 of file class.nusoap_base.php.
For more help developing with SiT! see http://sitracker.org/wiki/DevelopmentHowTo