Vote count:
0
i simply write a code for us web service in php but it does not showing anything. whats the problem. code is here
code for Real proxy
<?php
include_once './lib/nusoap.php';
$server = new soap_server();
$server->register('abc');
$server->register('def');
function abc()
{
return 'welcone';
}
function def()
{
return "j";
}
$server->service($HTTP_RAW_POST_DATA);
exit;
?>
now code for transparent proxy
$client = new nusoap_client($e);
$a=$client->call('abc');
$b=$client->call('def');
echo $a;
echo $b;
?>
it does not showing anything...help
?>
asked 7 secs ago
web service not running running in php
Aucun commentaire:
Enregistrer un commentaire