Login   Register  
PHP Classes
elePHPant
Icontem

File: myClient.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Marcus Brasizza  >  Simple Complex Type Builder  >  myClient.php  >  Download  
File: myClient.php
Role: Auxiliary script
Content type: text/plain
Description: The Wsdl Client
Class: Simple Complex Type Builder
Helper to return complex types from SOAP servers
Author: By
Last change:
Date: 2012-03-19 13:50
Size: 237 bytes
 

Contents

Class file image Download
<?php
include_once('nuSoap/nusoap/lib/nusoap.php');
$soapCliente =  new nusoap_client('http://myPath/to/file/serverSide.php?wsdl',false);
$result $soapCliente->call('last10');
echo 
"<pre>";
var_dump($result);
echo 
"</pre>";
?>