Forums / Developer / Nusoap - registering complex data types

Nusoap - registering complex data types

Author Message

Geoff Bentley

Friday 07 December 2007 5:38:52 pm

I want to return an array of objects, but wondering how to register them. I'm currently using the "document" style as this seems to reference addComplexType in the WSDL class.

$server->register(  'getIssues', 
                    array( 'userId' => 'xsd:integer' ),
                    array( array( 'issueId' => 'xsd:integer', 'issueTitle' => 'xsd:string', 'issueDescription' => 'xsd:string', 'completed' => array('section' => 'xsd:integer' ))),
                    'urn:getIssueswsdl', 
                    'urn:getIssueswsdl#getIssues',
                    'document',
                    'encoded',
                    'Returns issues that relate to a particular user'
                ); 

Does anyone know the correct way to register complex data types in the Nusoap extension?

Igor Vrdoljak

Saturday 08 December 2007 2:51:28 pm

First define complex types that you need, then you can register web methods that use these types. Following code works for me:

$server->wsdl->addComplexType(
    'Product',
    'complexType',
    'struct',
    'all',
    '',
    array(
        'Name' => array('name'=>'name','type'=>'xsd:string'),
        'Code' => array('name'=>'product_number','type'=>'xsd:string'),
	'Price' => array('name'=>'price','type'=>'xsd:decimal'),
        'Ammount' => array('name'=>'quantity','type'=>'xsd:int')
    )
);

$server->wsdl->addComplexType(
    'ProductArray',
    'complexType',
    'array',
    '',
    'SOAP-ENC:Array',
    array(),
    array(
        array('ref'=>'SOAP-ENC:arrayType','wsdl:arrayType'=>'tns:Product[]')
    ),
    'tns:Product'
);

$server->register(
   'GetProductsByCode',
   array('user'=>'xsd:string','password'=>'xsd:string','product_code'=>'xsd:string'),
   array('return'=>'tns:ProductArray'),
   $NAMESPACE);

Cheers

http://www.netgen.hr/eng
http://twitter.com/ivrdoljak

Geoff Bentley

Monday 10 December 2007 2:18:09 pm

Awesome! Many thanks Igor!

Daniel Dinnie

Wednesday 05 March 2008 1:17:54 am

Hi

I found your post in google, and im pretty much working on the same thing, but I have a small problem.

I pretty much got to the point you are now, and it seems to work fine when I return multiple rows of data. But if I only return 1 row of data, I get this as my output

array(4) { ["faultcode"]=> string(6) "Server" ["faultactor"]=> string(0) "" ["faultstring"]=> string(26) "unable to serialize result" ["detail"]=> string(0) "" }

Does anyone know why this is happening?
Can anyone help me please?

Thanks in advance

Samudaya Nanayakkara

Tuesday 21 April 2009 4:05:39 am

<b>I have a question regarding a identifying the client by server. When I write a simple helloworld server and client codes all wsdl and other functions are working. But I want to identify the requesting client in server code and respond (To set in return value in hellowold function) that client address back to client. Please help me to solve this. </b>


My nusoap.php in lib folder and all code in 'http://localhost/services/'


<b>Cleint code:</b>
<i>require_once('./lib/nusoap.php');
$client = new nusoap_client('http://localhost/services/server.php?wsdl', 'true');
echo $result = $client->call('helloworld'); </i>



<b>Server code: (server.php) </b>
<i>require_once('lib/nusoap.php');
$server = new soap_server();
$server->configureWSDL('hellowsdl','urn:hellowsdl');

$server->register('helloworld',
array('name' = 'xsd:string'),
array('return' = 'xsd:string'),
'urn:hellowsdl',
'urn:hellowsdl#hello',
'rpc',
'encoded',
'Says hello to the caller'
);

function helloworld()
{
return "Hi, ";
// I want to return requester(Client) address (Ip or url) here..................
// Return (This is your address.............)
}
// Use the request to (try to) invoke the service
$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : '';
$server->service($HTTP_RAW_POST_DATA);</i>

eZ debug

Timing: Jan 18 2025 05:06:35
Script start
Timing: Jan 18 2025 05:06:35
Module start 'content'
Timing: Jan 18 2025 05:06:35
Module end 'content'
Timing: Jan 18 2025 05:06:35
Script end

Main resources:

Total runtime0.7993 sec
Peak memory usage4,096.0000 KB
Database Queries204

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0050 588.8672180.8281
Module start 'content' 0.00500.6911 769.6953654.0000
Module end 'content' 0.69620.1031 1,423.6953341.0859
Script end 0.7993  1,764.7813 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00380.4749210.0002
Check MTime0.00140.1791210.0001
Mysql Total
Database connection0.00070.084010.0007
Mysqli_queries0.724190.58902040.0035
Looping result0.00180.22352020.0000
Template Total0.774496.920.3872
Template load0.00230.283020.0011
Template processing0.772296.600420.3861
Template load and register function0.00010.012810.0001
states
state_id_array0.00140.169910.0014
state_identifier_array0.00090.110020.0004
Override
Cache load0.00200.2532610.0000
Sytem overhead
Fetch class attribute can translate value0.00090.116250.0002
Fetch class attribute name0.00100.130770.0001
XML
Image XML parsing0.00280.346850.0006
class_abstraction
Instantiating content class attribute0.00000.001480.0000
General
dbfile0.00350.4394330.0001
String conversion0.00000.000530.0000
Note: percentages do not add up to 100% because some accumulators overlap

CSS/JS files loaded with "ezjscPacker" during request:

CacheTypePacklevelSourceFiles
CSS0extension/community/design/community/stylesheets/ext/jquery.autocomplete.css
extension/community_design/design/suncana/stylesheets/scrollbars.css
extension/community_design/design/suncana/stylesheets/tabs.css
extension/community_design/design/suncana/stylesheets/roadmap.css
extension/community_design/design/suncana/stylesheets/content.css
extension/community_design/design/suncana/stylesheets/star-rating.css
extension/community_design/design/suncana/stylesheets/syntax_and_custom_tags.css
extension/community_design/design/suncana/stylesheets/buttons.css
extension/community_design/design/suncana/stylesheets/tweetbox.css
extension/community_design/design/suncana/stylesheets/jquery.fancybox-1.3.4.css
extension/bcsmoothgallery/design/standard/stylesheets/magnific-popup.css
extension/sevenx/design/simple/stylesheets/star_rating.css
extension/sevenx/design/simple/stylesheets/libs/fontawesome/css/all.min.css
extension/sevenx/design/simple/stylesheets/main.v02.css
extension/sevenx/design/simple/stylesheets/main.v02.res.css
JS0extension/ezjscore/design/standard/lib/yui/3.17.2/build/yui/yui-min.js
extension/ezjscore/design/standard/javascript/jquery-3.7.0.min.js
extension/community_design/design/suncana/javascript/jquery.ui.core.min.js
extension/community_design/design/suncana/javascript/jquery.ui.widget.min.js
extension/community_design/design/suncana/javascript/jquery.easing.1.3.js
extension/community_design/design/suncana/javascript/jquery.ui.tabs.js
extension/community_design/design/suncana/javascript/jquery.hoverIntent.min.js
extension/community_design/design/suncana/javascript/jquery.popmenu.js
extension/community_design/design/suncana/javascript/jScrollPane.js
extension/community_design/design/suncana/javascript/jquery.mousewheel.js
extension/community_design/design/suncana/javascript/jquery.cycle.all.js
extension/sevenx/design/simple/javascript/jquery.scrollTo.js
extension/community_design/design/suncana/javascript/jquery.cookie.js
extension/community_design/design/suncana/javascript/ezstarrating_jquery.js
extension/community_design/design/suncana/javascript/jquery.initboxes.js
extension/community_design/design/suncana/javascript/app.js
extension/community_design/design/suncana/javascript/twitterwidget.js
extension/community_design/design/suncana/javascript/community.js
extension/community_design/design/suncana/javascript/roadmap.js
extension/community_design/design/suncana/javascript/ez.js
extension/community_design/design/suncana/javascript/ezshareevents.js
extension/sevenx/design/simple/javascript/main.js

Templates used to render the page:

UsageRequested templateTemplateTemplate loadedEditOverride
1node/view/full.tplfull/forum_topic.tplextension/sevenx/design/simple/override/templates/full/forum_topic.tplEdit templateOverride template
3content/datatype/view/ezimage.tpl<No override>extension/sevenx/design/simple/templates/content/datatype/view/ezimage.tplEdit templateOverride template
5content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
8content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
2content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
2content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
1pagelayout.tpl<No override>extension/sevenx/design/simple/templates/pagelayout.tplEdit templateOverride template
 Number of times templates used: 22
 Number of unique templates used: 7

Time used to render debug report: 0.0001 secs