NuSphere Forums Forum Index
NuSphere Forums
Reply to topic
register ? function


Joined: 13 Aug 2008
Posts: 3
Reply with quote
Hello @all,

i am new and i try to create a webservice using nusoap.
the service should provide a function that becomes a arraylist with parms and return another arraylist.
my problem is, i dont know how to code the register method for this function ??

my Code so far:
Code:

require_once 'nusoap.php';
 
$soap = new soap_server();
$soap->configureWSDL('TEST', 'http://www.test-server.de/'); $soap->wsdl->schemaTargetNamespace = 'http://soapinterop.org/xsd/';

$soap->register(
    'strtest',
    array(
     'parray' => 'xsd:????????????????'
    ),
    array(
     'farray' => 'xsd:????????????????????????'
    ),
    'http://soapinterop.org/'
);
$soap->service(isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : ''); function strtest($parray) {
   // business logic ...
   return $farray;
}


// ------------- Client -------------
$funcarray[0] = array("parm1"="1","parm2"="car","parm3"="green");
$funcarray[1] = array("parm1"="2","parm2"="bike","parm3"="red");
$funcarray[2] = array("parm1"="3","parm2"="mbike","parm3"="blue");
 
$soap = new soapclient('http://...?wsdl', true); $proxy = $soap->getProxy();
 
$erglist= $proxy->strtest($funcarray); 


can anybody give me some help, to get the service running?
perhaps anybody has examples of function with array as parms with the wsdl-files, so i can look at.

gruß jogi
View user's profileFind all posts by jogisargeSend private message
register ? function
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT - 5 Hours  
Page 1 of 1  

  
  
 Reply to topic