summaryrefslogtreecommitdiff
path: root/ext/soap/interop/testclient.php
blob: b70c628ee5f76840ea266be308fb30cd91433232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html><body>
<?
error_reporting(2039);
include("SOAP/Client.php");

$txt = "Bjoern";

$soapc = new SOAP_Client("http://localhost/soap_interop/testserver.php");
$soapc->debug_flag = TRUE;
print_r($soapc->call("testMethod",array("txt" => $txt)));
print "<br>Debug: ";
print $soapc->wire;
print "<br><br>";
unset($soapc);

?>
</html></body>