PHP Classes

File: myClient.php

Recommend this page to a friend!
  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: 12 years ago
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>";
?>