any wrong for this function ?? NetworkError: 500 Internal Server Error
private function getWebService() {
require_once ('lib/nusoap.php');
$param = array( 'your_name' => 'Monotosh Roy');
$client = new soapclient('http://192.168.1.100/WebServiceSOAP/server.php');
$response = $client->call('get_message',$param);
if($client->fault)
{
echo "FAULT: <p>Code: (".$client->faultcode."</p>";
echo "String: ".$client->faultstring;
}
else
{
echo $response;
}
}