Simple code to connect to a wsdl service and retrieve SOAP data with PEAR::SOAP

Author Message

Olivier Pierret

Wednesday 02 March 2005 3:34:15 am

Hello all,

Just this message to announce that i did a very simple extension that connects onto a wsdl service and returns an associative array with the result of a call to a web services:

Basically

{let resultat=fetch('pear_soap_client','getSOAPResult',hash(soapWSDLURL,'http://nsilasw2k02:8080/gpat/services/Login?wsdl', 
							soapOperation, 'getUserSecurity', 
							soapOperationParameters, array('bco','7654','administrator','PA')))}

{$resultat.SQLErrorCode}
{/let}

gives you: 0
which is part of the following soap response (translated in PHP associative arrays)

Array
(
    [SQLErrorCode] => 0
    [SQLErrorMessage] => 
    [VOUserRoleArray] => stdClass Object
        (
            [item] => stdClass Object
                (
                    [application] => PA
                    [codlan] => F
                    [codusr] => bco
                    [datcre] => 2004-03-21T23:00:00.000Z
                    [datmod] => 
                    [email] => b.e@test.be
                    [encryptedUniqueKey] => 
                    [foncti] => Humoriste
                    [nom] => Colaglu
                    [numfax] => 
                    [numgsm] => 
                    [numtel] => 09370089
                    [objectStatus] => NONE
                    [passwd] => 7654
                    [prenom] => prenom
                    [profil] => administrator
                    [xlogcr] => bco
                    [xlogmo] => 
                )

        )

    [detailedErrorMessage] => 
)

This code was quite obvious to write (*) but may be of interest for EZ developers and users. If people find it useful and relevant I can publish it as a contribution.

However there is a big drawback at this point: the data structure returned by PEAR::SOAP is made of stdclass nested together which is not usable in EZ Publish. I probably need a method to "recursively translate object property vales into hash table". Any idea ?

FYI here is this code of the main function of the extension:

...
require_once('SOAP/Client.php'); 
...
	function &getSOAPResult( $soapWSDLURL, $soapOperation, $soapOperationParameters)
	{ 
		eZINI::setIsDebugEnabled( true );
		$wsdl=new SOAP_WSDL($soapWSDLURL);
		$proxy=$wsdl->getProxy(); 
		$eval_str="\$result =\$proxy->$soapOperation(";
		foreach ($soapOperationParameters as $argValue) {
			$eval_str .= "\"$argValue\",";
		}
		$eval_str = substr("$eval_str", 0, -1).");";
		eval($eval_str);
		$result_array = get_object_vars($result);
		return array( 'result' => &$result_array ); 
	}	

Best regards
Olivier Pierret

(*) compared to other extension code available uploaded in the contrib section.

Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2014 eZ Systems AS (except where otherwise noted). All rights reserved.

eZ debug

Timing: Jan 19 2025 00:17:52
Script start
Timing: Jan 19 2025 00:17:52
Module start 'layout'
Timing: Jan 19 2025 00:17:52
Module start 'content'
Timing: Jan 19 2025 00:17:53
Module end 'content'
Timing: Jan 19 2025 00:17:53
Script end

Main resources:

Total runtime0.7359 sec
Peak memory usage4,096.0000 KB
Database Queries46

Timing points:

CheckpointStart (sec)Duration (sec)Memory at start (KB)Memory used (KB)
Script start 0.00000.0049 588.4063152.6875
Module start 'layout' 0.00490.0031 741.093839.5234
Module start 'content' 0.00800.7263 780.6172414.2422
Module end 'content' 0.73430.0016 1,194.85948.0625
Script end 0.7358  1,202.9219 

Time accumulators:

 Accumulator Duration (sec) Duration (%) Count Average (sec)
Ini load
Load cache0.00320.4328160.0002
Check MTime0.00130.1786160.0001
Mysql Total
Database connection0.00070.092310.0007
Mysqli_queries0.691493.9589460.0150
Looping result0.00050.0630440.0000
Template Total0.704595.720.3523
Template load0.00200.275020.0010
Template processing0.702595.459920.3512
Template load and register function0.00020.030810.0002
states
state_id_array0.00150.200910.0015
state_identifier_array0.00090.119220.0004
Override
Cache load0.00170.2281200.0001
Sytem overhead
Fetch class attribute can translate value0.00080.115110.0008
Fetch class attribute name0.00090.124510.0009
XML
Image XML parsing0.00010.015910.0001
class_abstraction
Instantiating content class attribute0.00000.000710.0000
General
dbfile0.00170.2314100.0002
String conversion0.00000.001140.0000
Note: percentages do not add up to 100% because some accumulators overlap

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
1content/datatype/view/ezxmltext.tpl<No override>extension/community_design/design/suncana/templates/content/datatype/view/ezxmltext.tplEdit templateOverride template
5content/datatype/view/ezxmltags/paragraph.tpl<No override>extension/ezwebin/design/ezwebin/templates/content/datatype/view/ezxmltags/paragraph.tplEdit templateOverride template
3content/datatype/view/ezxmltags/literal.tpl<No override>extension/community/design/standard/templates/content/datatype/view/ezxmltags/literal.tplEdit templateOverride template
3content/datatype/view/ezxmltags/line.tpl<No override>design/standard/templates/content/datatype/view/ezxmltags/line.tplEdit templateOverride template
1print_pagelayout.tpl<No override>extension/community/design/community/templates/print_pagelayout.tplEdit templateOverride template
 Number of times templates used: 14
 Number of unique templates used: 6

Time used to render debug report: 0.0001 secs