'https://localhost/test'); $server=new SoapServer(NULL,$options); $server->setClass('MySoapServer'); $server->handle(); ?> 'https://localhsot/', 'location' => 'https://localhost/', 'connection_timeout' => 30, ); ini_set('default_socket_timeout',20); file_put_contents('/tmp/ini.txt',print_r(ini_get_all(),true)."\n",FILE_APPEND); $start = time(); $client = new SoapClient(NULL,$options); echo $client->getMessage()."\n"; //Hello,World! $end = time(); echo "runtime : " .($end - $start). "\n"; echo $client->addNumbers(3,5)."\n"; // 8 $end = time(); echo "runtime : " .($end - $start) ."\n"; ?>