summaryrefslogtreecommitdiffstats
path: root/client.php
blob: ae8cb924795c2961935270d0b6d1994daac62526 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

include ("kd_xmlrpc.php");
//define("XMLRPC_DEBUG", 1);    // Set to 1 for handy debugging

$site = "192.168.1.152:8080";
$location = "/RPC2";

$method = "tcos.version";
$params=array();
list($success, $result) = XMLRPC_request( $site, $location, $method, $params );

print_r($result);

?>