PHP Classes

File: examples/clienteexample.php

Recommend this page to a friend!
  Classes of Jorge Castro   Cloud King PHP SOAP Server   examples/clienteexample.php   Download  
File: examples/clienteexample.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Cloud King PHP SOAP Server
Implement an SOAP server API with handler classes
Author: By
Last change:
Date: 3 years ago
Size: 502 bytes
 

Contents

Class file image Download
<? /** @noinspection ForgottenDebugOutputInspection */

use eftec\cloudking\CloudKingClient;
use
www\examplenamespace\cl\Example2WSClient;

include
__DIR__.'/../vendor/autoload.php';
include
__DIR__.'/service/Example2WSClient.php';

$x=new Example2WSClient();
echo
"<pre>";
var_dump($x->GetProductos());
var_dump($x->doubleping('a1','a2'));
echo
"\nErrors:\n";
var_dump($x->lastError);
echo
"</pre>";
/***************************************** Implementation *****************************************/