logo       
Google Custom Search
    AddThis Social Bookmark Button
-->

Re: multi dimensional array: msg#00036

Subject: Re: multi dimensional array
what does the server code look like? I do not remember the example however I use just a process. server looks like:

// AffInfArray
// complex array
$GLOBALS['l_oServer']->wsdl->addComplexType(
'AffInfArray',
'complexType',
'array',
'all',
'SOAP-ENC:Array',
array(),
array(array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'tns:AffInf[]'))
);
// AffInf
$GLOBALS['l_oServer']->wsdl->addComplexType(
   'AffInf',
   'complexType',
   'struct',
   'all',
   '',
   array('id' => array('name'=>'id', 'type'=>'xsd:string'),
   'bid' => array('name'=>'bid', 'type'=>'xsd:string'),
   'iid' => array('name'=>'iid', 'type'=>'xsd:int')) 
);


and the server registration is:

$GLOBALS['l_oServer']->register('getInf', $affiliateSoapCredentials, array('return'=>'AffInfArray'),  $GLOBALS['l_oServer']->wsdl->schemaTargetNamespace);


Note the differences in the complexType creation.

hope this helps out.

ken;


On Feb 12, 2006, at 4:21 PM, Marc wrote:

Hi,
i hav tried the example in this link :

http://sourceforge.net/mailarchive/message.php?msg_id=2673713

But the result returned isn't the one expected ...

Expected :
Array
(
    [0] => Array ( [0] => "val00" , [1] => "val01" )
    [1] => Array ( [0] => "val10" , [1] => "val11" )  
    [2] => Array ( [0] => "val20" , [1] => "val21" ) 
)
Returned :

Array
(
    [0] => Array
    [1] => Array
    [2] => Array
)

Below the client source code and the result in browser.

Do you have any idea of the problem ??
Thanks
Marc



<?php
// Pull in the NuSOAP code
require_once('nusoap/lib/nusoap.php');
// Create the client instance
$client = new soapclient_nusoap('http://localhost/webservices/index3.php?wsdl', true);
// Check for an error
$err = $client->getError();
if ($err) {
    // Display the error
    echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
    // At this point, you know the call that follows will fail
}
// Call the SOAP method
$result = $client->call('get_issues', array("constituent" => "sdsdring", "constituency" => "qsdring"));
// Check for a fault
if ($client->fault) {
    echo '<h2>Fault</h2><pre>';
    print_r($result);
    echo '</pre>';
} else {
    // Check for errors
    $err = $client->getError();
    if ($err) {
        // Display the error
        echo '<h2>Error</h2><pre>' . $err . '</pre>';
    } else {
        // Display the result
        echo '<h2>Result</h2><pre>';
        print_r($result);
    echo '</pre>';
    }
}
// Display the request and response
echo '<h2>Request</h2>';
echo '<pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>';
echo '<h2>Response</h2>';
echo '<pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>';
// Display the debug messages
echo '<h2>Debug</h2>';
echo '<pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>';
?>




Result

Array
(
    [0] => Array
    [1] => Array
    [2] => Array
)

Request

POST /ciell2/extractions/webservices/index3.php HTTP/1.0
Host: annexes.iut2.upmf-grenoble.fr
User-Agent: NuSOAP/0.7.2 (1.94)
Content-Type: text/xml; charset=ISO-8859-1
SOAPAction: "http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php/get_issues"
Content-Length: 601

"http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:mynamespace">urn:mynamespace">sdsdring
qsdring

Response

HTTP/1.1 200 OK
Date: Sun, 12 Feb 2006 21:09:12 GMT
Server: Apache
X-Powered-By: PHP/5.1.2-0bpo1
X-SOAP-Server: NuSOAP/0.7.2 (1.94)
Content-Length: 1353
Connection: close
Content-Type: text/xml; charset=ISO-8859-1

"http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">urn:mynamespace">Array<
;item xsi:type="xsd:string">ArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArrayArray

Debug

2006-02-12 22:09:12.434729 soapclient_nusoap: instantiating wsdl class with doc: http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php?wsdl
2006-02-12 22:09:12.435052 wsdl: initial wsdl URL: http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php?wsdl
2006-02-12 22:09:12.435212 wsdl: getting WSDL http(s) URL http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php?wsdl
2006-02-12 22:09:12.435457 soap_transport_http: scheme = http
2006-02-12 22:09:12.435608 soap_transport_http: host = annexes.iut2.upmf-grenoble.fr
2006-02-12 22:09:12.435735 soap_transport_http: path = /ciell2/extractions/webservices/index3.php
2006-02-12 22:09:12.435862 soap_transport_http: query = wsdl
2006-02-12 22:09:12.436005 soap_transport_http: set Host: annexes.iut2.upmf-grenoble.fr
2006-02-12 22:09:12.436186 soap_transport_http: set User-Agent: NuSOAP/0.7.2 (1.94)
2006-02-12 22:09:12.436330 soap_transport_http: set Accept-Encoding: gzip, deflate
2006-02-12 22:09:12.436470 soap_transport_http: set Connection: close
2006-02-12 22:09:12.436618 soap_transport_http: entered send() with data of length: 0
2006-02-12 22:09:12.436762 soap_transport_http: connect connection_timeout 0, response_timeout 30, scheme http, host annexes.iut2.upmf-grenoble.fr, port 80
2006-02-12 22:09:12.436900 soap_transport_http: calling fsockopen with host annexes.iut2.upmf-grenoble.fr connection_timeout 0
2006-02-12 22:09:12.438926 soap_transport_http: set response timeout to 30
2006-02-12 22:09:12.439151 soap_transport_http: socket connected
2006-02-12 22:09:12.439318 soap_transport_http: set Content-Length: 0
2006-02-12 22:09:12.439466 soap_transport_http: HTTP request: GET /ciell2/extractions/webservices/index3.php?wsdl HTTP/1.1
2006-02-12 22:09:12.439603 soap_transport_http: HTTP header: Host: annexes.iut2.upmf-grenoble.fr
2006-02-12 22:09:12.439733 soap_transport_http: HTTP header: User-Agent: NuSOAP/0.7.2 (1.94)
2006-02-12 22:09:12.439862 soap_transport_http: HTTP header: Accept-Encoding: gzip, deflate
2006-02-12 22:09:12.439989 soap_transport_http: HTTP header: Connection: close
2006-02-12 22:09:12.440119 soap_transport_http: HTTP header: Content-Length: 0
2006-02-12 22:09:12.440289 soap_transport_http: wrote data to socket, length = 204
2006-02-12 22:09:12.492185 soap_transport_http: read line of 17 bytes: HTTP/1.1 200 OK
2006-02-12 22:09:12.492448 soap_transport_http: read line of 37 bytes: Date: Sun, 12 Feb 2006 21:09:12 GMT
2006-02-12 22:09:12.492596 soap_transport_http: read line of 16 bytes: Server: Apache
2006-02-12 22:09:12.492741 soap_transport_http: read line of 31 bytes: X-Powered-By: PHP/5.1.2-0bpo1
2006-02-12 22:09:12.492887 soap_transport_http: read line of 19 bytes: Connection: close
2006-02-12 22:09:12.493032 soap_transport_http: read line of 28 bytes: Transfer-Encoding: chunked
2006-02-12 22:09:12.493178 soap_transport_http: read line of 44 bytes: Content-Type: text/xml; charset=ISO-8859-1
2006-02-12 22:09:12.493322 soap_transport_http: read line of 2 bytes: 
2006-02-12 22:09:12.493542 soap_transport_http: found end of headers after length 194
2006-02-12 22:09:12.493794 soap_transport_http: want to read chunked content
2006-02-12 22:09:12.493941 soap_transport_http: read chunk line of 5 bytes
2006-02-12 22:09:12.494087 soap_transport_http: chunk length 2139
2006-02-12 22:09:12.494238 soap_transport_http: read buffer of 2139 bytes
2006-02-12 22:09:12.494385 soap_transport_http: read chunk terminator of 2 bytes
2006-02-12 22:09:12.494539 soap_transport_http: read chunk line of 3 bytes
2006-02-12 22:09:12.494671 soap_transport_http: chunk length 0
2006-02-12 22:09:12.494806 soap_transport_http: read body of length 2139
2006-02-12 22:09:12.494940 soap_transport_http: received a total of 2333 bytes of data from server
2006-02-12 22:09:12.495140 soap_transport_http: closed socket
2006-02-12 22:09:12.495301 soap_transport_http: No Content-Encoding header
2006-02-12 22:09:12.495450 soap_transport_http: end of send()
2006-02-12 22:09:12.495615 wsdl: got WSDL URL
2006-02-12 22:09:12.495737 wsdl: Parse WSDL
2006-02-12 22:09:12.496496 wsdl: Parsing WSDL schema
2006-02-12 22:09:12.496757 XMLSchema: xmlschema class instantiated, inside constructor
2006-02-12 22:09:12.497486 XMLSchema: <urn:mynamespace> processing named complexType TwoDArrayOfString
2006-02-12 22:09:12.497867 XMLSchema: <urn:mynamespace> restriction http://schemas.xmlsoap.org/soap/encoding/:Array
2006-02-12 22:09:12.498153 XMLSchema: <urn:mynamespace> parsing attribute:
array(2) {
  ["ref"]=>
  string(51) "http://schemas.xmlsoap.org/soap/encoding/:arrayType"
  ["http://schemas.xmlsoap.org/wsdl/:arrayType"]=>
  string(42) "http://www.w3.org/2001/XMLSchema:string[,]"
}
2006-02-12 22:09:12.498569 XMLSchema: <urn:mynamespace> done processing complexType TwoDArrayOfString
2006-02-12 22:09:12.498761 wsdl: Parsing WSDL schema done
2006-02-12 22:09:12.499072 wsdl: msg get_issuesRequest: found part constituent: constituent,http://www.w3.org/2001/XMLSchema:string
2006-02-12 22:09:12.499315 wsdl: msg get_issuesRequest: found part constituency: constituency,http://www.w3.org/2001/XMLSchema:string
2006-02-12 22:09:12.499625 wsdl: msg get_issuesResponse: found part return: return,urn:mynamespace:TwoDArrayOfString
2006-02-12 22:09:12.499897 wsdl: portType MyServicePortType operation: get_issues
2006-02-12 22:09:12.500344 wsdl: current binding: MyServiceBinding of portType: urn:mynamespace:MyServicePortType
2006-02-12 22:09:12.500661 wsdl: current binding operation: get_issues
2006-02-12 22:09:12.501260 wsdl: current service: MyService
2006-02-12 22:09:12.501492 wsdl: current port: MyServicePort
2006-02-12 22:09:12.501800 wsdl: Parsing WSDL done
2006-02-12 22:09:12.502022 wsdl: post-parse data gathering for get_issues
2006-02-12 22:09:12.502302 soapclient_nusoap: got 1 operations from wsdl http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php?wsdl
2006-02-12 22:09:12.502503 soapclient_nusoap: call: operation=get_issues, namespace=http://tempuri.org, soapAction=, rpcParams=, style=rpc, use=encoded, endpointType=wsdl
params=array(2) {
  ["constituent"]=>
  string(8) "sdsdring"
  ["constituency"]=>
  string(7) "qsdring"
}
headers=bool(false)
2006-02-12 22:09:12.502686 soapclient_nusoap: found operation
opData=array(9) {
  ["name"]=>
  string(10) "get_issues"
  ["binding"]=>
  string(16) "MyServiceBinding"
  ["endpoint"]=>
  string(78) "http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php"
  ["soapAction"]=>
  string(89) "http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php/get_issues"
  ["style"]=>
  string(3) "rpc"
  ["input"]=>
  array(5) {
    ["use"]=>
    string(7) "encoded"
    ["namespace"]=>
    string(15) "urn:mynamespace"
    ["encodingStyle"]=>
    string(41) "http://schemas.xmlsoap.org/soap/encoding/"
    ["message"]=>
    string(17) "get_issuesRequest"
    ["parts"]=>
    array(2) {
      ["constituent"]=>
      string(39) "http://www.w3.org/2001/XMLSchema:string"
      ["constituency"]=>
      string(39) "http://www.w3.org/2001/XMLSchema:string"
    }
  }
  ["output"]=>
  array(5) {
    ["use"]=>
    string(7) "encoded"
    ["namespace"]=>
    string(15) "urn:mynamespace"
    ["encodingStyle"]=>
    string(41) "http://schemas.xmlsoap.org/soap/encoding/"
    ["message"]=>
    string(18) "get_issuesResponse"
    ["parts"]=>
    array(1) {
      ["return"]=>
      string(33) "urn:mynamespace:TwoDArrayOfString"
    }
  }
  ["transport"]=>
  string(36) "http://schemas.xmlsoap.org/soap/http"
  ["documentation"]=>
  string(0) ""
}
2006-02-12 22:09:12.502969 soapclient_nusoap: serializing param array for WSDL operation get_issues
2006-02-12 22:09:12.503126 wsdl: in serializeRPCParameters: operation=get_issues, direction=input, XMLSchemaVersion=http://www.w3.org/2001/XMLSchema
parameters=array(2) {
  ["constituent"]=>
  string(8) "sdsdring"
  ["constituency"]=>
  string(7) "qsdring"
}
2006-02-12 22:09:12.503301 wsdl: opData:
array(9) {
  ["name"]=>
  string(10) "get_issues"
  ["binding"]=>
  string(16) "MyServiceBinding"
  ["endpoint"]=>
  string(78) "http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php"
  ["soapAction"]=>
  string(89) "http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php/get_issues"
  ["style"]=>
  string(3) "rpc"
  ["input"]=>
  array(5) {
    ["use"]=>
    string(7) "encoded"
    ["namespace"]=>
    string(15) "urn:mynamespace"
    ["encodingStyle"]=>
    string(41) "http://schemas.xmlsoap.org/soap/encoding/"
    ["message"]=>
    string(17) "get_issuesRequest"
    ["parts"]=>
    array(2) {
      ["constituent"]=>
      string(39) "http://www.w3.org/2001/XMLSchema:string"
      ["constituency"]=>
      string(39) "http://www.w3.org/2001/XMLSchema:string"
    }
  }
  ["output"]=>
  array(5) {
    ["use"]=>
    string(7) "encoded"
    ["namespace"]=>
    string(15) "urn:mynamespace"
    ["encodingStyle"]=>
    string(41) "http://schemas.xmlsoap.org/soap/encoding/"
    ["message"]=>
    string(18) "get_issuesResponse"
    ["parts"]=>
    array(1) {
      ["return"]=>
      string(33) "urn:mynamespace:TwoDArrayOfString"
    }
  }
  ["transport"]=>
  string(36) "http://schemas.xmlsoap.org/soap/http"
  ["documentation"]=>
  string(0) ""
}
2006-02-12 22:09:12.503517 wsdl: have 2 part(s) to serialize
2006-02-12 22:09:12.503660 wsdl: have 2 parameter(s) provided as arrayStruct to serialize
2006-02-12 22:09:12.503798 wsdl: serializing part "constituent" of type "http://www.w3.org/2001/XMLSchema:string"
2006-02-12 22:09:12.503932 wsdl: calling serializeType w/named param
2006-02-12 22:09:12.504071 wsdl: in serializeType: name=constituent, type=http://www.w3.org/2001/XMLSchema:string, use=encoded, encodingStyle=, unqualified=qualified
value=string(8) "sdsdring"
2006-02-12 22:09:12.504238 wsdl: in serializeType: got a prefixed type: string, http://www.w3.org/2001/XMLSchema
2006-02-12 22:09:12.504372 wsdl: in serializeType: type namespace indicates XML Schema or SOAP Encoding type
2006-02-12 22:09:12.504542 wsdl: in getTypeDef: type=string, ns=http://www.w3.org/2001/XMLSchema
2006-02-12 22:09:12.504674 wsdl: in getTypeDef: do not have schema for namespace http://www.w3.org/2001/XMLSchema
2006-02-12 22:09:12.504823 wsdl: in serializeType: returning: sdsdring
2006-02-12 22:09:12.504956 wsdl: serializing part "constituency" of type "http://www.w3.org/2001/XMLSchema:string"
2006-02-12 22:09:12.505085 wsdl: calling serializeType w/named param
2006-02-12 22:09:12.505219 wsdl: in serializeType: name=constituency, type=http://www.w3.org/2001/XMLSchema:string, use=encoded, encodingStyle=, unqualified=qualified
value=string(7) "qsdring"
2006-02-12 22:09:12.505378 wsdl: in serializeType: got a prefixed type: string, http://www.w3.org/2001/XMLSchema
2006-02-12 22:09:12.505524 wsdl: in serializeType: type namespace indicates XML Schema or SOAP Encoding type
2006-02-12 22:09:12.505673 wsdl: in getTypeDef: type=string, ns=http://www.w3.org/2001/XMLSchema
2006-02-12 22:09:12.505801 wsdl: in getTypeDef: do not have schema for namespace http://www.w3.org/2001/XMLSchema
2006-02-12 22:09:12.505946 wsdl: in serializeType: returning: qsdring
2006-02-12 22:09:12.506075 wsdl: serializeRPCParameters returning: sdsdringqsdring
2006-02-12 22:09:12.506243 soapclient_nusoap: wrapping RPC request with encoded method element
2006-02-12 22:09:12.506409 soapclient_nusoap: In serializeEnvelope length=176 body (max 1000 characters)=urn:mynamespace">sdsdringqsdring style=rpc use=encoded encodingStyle=http://schemas.xmlsoap.org/soap/encoding/
2006-02-12 22:09:12.506559 soapclient_nusoap: headers:
bool(false)
2006-02-12 22:09:12.506719 soapclient_nusoap: namespaces:
array(2) {
  ["tns"]=>
  string(15) "urn:mynamespace"
  ["xsd"]=>
  string(32) "http://www.w3.org/2001/XMLSchema"
}
2006-02-12 22:09:12.506942 soapclient_nusoap: endpoint=http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php, soapAction=http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php/get_issues, namespace=urn:mynamespace, style=rpc, use=encoded, encodingStyle=http://schemas.xmlsoap.org/soap/encoding/
2006-02-12 22:09:12.507078 soapclient_nusoap: SOAP message length=601 contents (max 1000 bytes)="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:mynamespace">urn:mynamespace">sdsdringqsdring
2006-02-12 22:09:12.507239 soapclient_nusoap: transporting via HTTP
2006-02-12 22:09:12.508416 soapclient_nusoap: sending message, length=601
2006-02-12 22:09:12.507438 soap_transport_http: scheme = http
2006-02-12 22:09:12.507570 soap_transport_http: host = annexes.iut2.upmf-grenoble.fr
2006-02-12 22:09:12.507696 soap_transport_http: path = /ciell2/extractions/webservices/index3.php
2006-02-12 22:09:12.507837 soap_transport_http: set Host: annexes.iut2.upmf-grenoble.fr
2006-02-12 22:09:12.507998 soap_transport_http: set User-Agent: NuSOAP/0.7.2 (1.94)
2006-02-12 22:09:12.508138 soap_transport_http: set Content-Type: text/xml; charset=ISO-8859-1
2006-02-12 22:09:12.508271 soap_transport_http: set SOAPAction: "http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php/get_issues"
2006-02-12 22:09:12.508576 soap_transport_http: entered send() with data of length: 601
2006-02-12 22:09:12.508723 soap_transport_http: connect connection_timeout 0, response_timeout 30, scheme http, host annexes.iut2.upmf-grenoble.fr, port 80
2006-02-12 22:09:12.508861 soap_transport_http: calling fsockopen with host annexes.iut2.upmf-grenoble.fr connection_timeout 0
2006-02-12 22:09:12.510479 soap_transport_http: set response timeout to 30
2006-02-12 22:09:12.510667 soap_transport_http: socket connected
2006-02-12 22:09:12.510840 soap_transport_http: set Content-Length: 601
2006-02-12 22:09:12.510975 soap_transport_http: HTTP request: POST /ciell2/extractions/webservices/index3.php HTTP/1.0
2006-02-12 22:09:12.511113 soap_transport_http: HTTP header: Host: annexes.iut2.upmf-grenoble.fr
2006-02-12 22:09:12.511245 soap_transport_http: HTTP header: User-Agent: NuSOAP/0.7.2 (1.94)
2006-02-12 22:09:12.511375 soap_transport_http: HTTP header: Content-Type: text/xml; charset=ISO-8859-1
2006-02-12 22:09:12.511517 soap_transport_http: HTTP header: SOAPAction: "http://annexes.iut2.upmf-grenoble.fr/ciell2/extractions/webservices/index3.php/get_issues"
2006-02-12 22:09:12.511651 soap_transport_http: HTTP header: Content-Length: 601
2006-02-12 22:09:12.511830 soap_transport_http: wrote data to socket, length = 901
2006-02-12 22:09:12.594949 soap_transport_http: read line of 17 bytes: HTTP/1.1 200 OK
2006-02-12 22:09:12.595203 soap_transport_http: read line of 37 bytes: Date: Sun, 12 Feb 2006 21:09:12 GMT
2006-02-12 22:09:12.595347 soap_transport_http: read line of 16 bytes: Server: Apache
2006-02-12 22:09:12.595505 soap_transport_http: read line of 31 bytes: X-Powered-By: PHP/5.1.2-0bpo1
2006-02-12 22:09:12.595647 soap_transport_http: read line of 36 bytes: X-SOAP-Server: NuSOAP/0.7.2 (1.94)
2006-02-12 22:09:12.595791 soap_transport_http: read line of 22 bytes: Content-Length: 1353
2006-02-12 22:09:12.595930 soap_transport_http: read line of 19 bytes: Connection: close
2006-02-12 22:09:12.596071 soap_transport_http: read line of 44 bytes: Content-Type: text/xml; charset=ISO-8859-1
2006-02-12 22:09:12.596211 soap_transport_http: read line of 2 bytes: 
2006-02-12 22:09:12.596428 soap_transport_http: found end of headers after length 224
2006-02-12 22:09:12.596689 soap_transport_http: want to read content of length 1353
2006-02-12 22:09:12.596841 soap_transport_http: read buffer of 1353 bytes
2006-02-12 22:09:12.596987 soap_transport_http: read body of length 1353
2006-02-12 22:09:12.597118 soap_transport_http: received a total of 1577 bytes of data from server
2006-02-12 22:09:12.597293 soap_transport_http: closed socket
2006-02-12 22:09:12.597464 soap_transport_http: No Content-Encoding header
2006-02-12 22:09:12.597599 soap_transport_http: end of send()
2006-02-12 22:09:12.597780 soapclient_nusoap: got response, length=1353 type=text/xml; charset=ISO-8859-1
2006-02-12 22:09:12.597917 soapclient_nusoap: Entering parseResponse() for data of length 1353 and type text/xml; charset=ISO-8859-1
2006-02-12 22:09:12.598056 soapclient_nusoap: Got response encoding: ISO-8859-1
2006-02-12 22:09:12.598275 soapclient_nusoap: Use encoding: ISO-8859-1 when creating soap_parser_nusoap
2006-02-12 22:09:12.598579 soap_parser_nusoap: Charset from HTTP Content-Type matches encoding from XML declaration
2006-02-12 22:09:12.598725 soap_parser_nusoap: Entering soap_parser_nusoap(), length=1353, encoding=ISO-8859-1
2006-02-12 22:09:12.599355 soap_parser_nusoap: found root struct get_issuesResponse, pos 2
2006-02-12 22:09:12.602591 soap_parser_nusoap: in buildVal() for return(pos 3) of type array
2006-02-12 22:09:12.602756 soap_parser_nusoap: in buildVal, there are children
2006-02-12 22:09:12.602920 soap_parser_nusoap: in buildVal, adding array return
2006-02-12 22:09:12.603172 soap_parser_nusoap: in buildVal() for get_issuesResponse(pos 2) of type struct
2006-02-12 22:09:12.603312 soap_parser_nusoap: in buildVal, there are children
2006-02-12 22:09:12.603461 soap_parser_nusoap: in buildVal, adding Java Vector get_issuesResponse
2006-02-12 22:09:12.603693 soap_parser_nusoap: parsed successfully, found root struct: 2 of name get_issuesResponse
2006-02-12 22:09:12.604003 soapclient_nusoap: sent message successfully and got a(n) array
return=array(1) {
  ["return"]=>
  array(20) {
    [0]=>
    string(5) "Array"
    [1]=>
    string(5) "Array"
    [2]=>
    string(5) "Array"
    [3]=>
    string(5) "Array"
    [4]=>
    string(5) "Array"
    [5]=>
    string(5) "Array"
    [6]=>
    string(5) "Array"
    [7]=>
    string(5) "Array"
    [8]=>
    string(5) "Array"
    [9]=>
    string(5) "Array"
    [10]=>
    string(5) "Array"
    [11]=>
    string(5) "Array"
    [12]=>
    string(5) "Array"
    [13]=>
    string(5) "Array"
    [14]=>
    string(5) "Array"
    [15]=>
    string(5) "Array"
    [16]=>
    string(5) "Array"
    [17]=>
    string(5) "Array"
    [18]=>
    string(5) "Array"
    [19]=>
    string(5) "Array"
  }
}
2006-02-12 22:09:12.604252 soapclient_nusoap: return shifted value: 
array(20) {
  [0]=>
  string(5) "Array"
  [1]=>
  string(5) "Array"
  [2]=>
  string(5) "Array"
  [3]=>
  string(5) "Array"
  [4]=>
  string(5) "Array"
  [5]=>
  string(5) "Array"
  [6]=>
  string(5) "Array"
  [7]=>
  string(5) "Array"
  [8]=>
  string(5) "Array"
  [9]=>
  string(5) "Array"
  [10]=>
  string(5) "Array"
  [11]=>
  string(5) "Array"
  [12]=>
  string(5) "Array"
  [13]=>
  string(5) "Array"
  [14]=>
  string(5) "Array"
  [15]=>
  string(5) "Array"
  [16]=>
  string(5) "Array"
  [17]=>
  string(5) "Array"
  [18]=>
  string(5) "Array"
  [19]=>
  string(5) "Array"
}


<Prev in Thread] Current Thread [Next in Thread>