<?php
    
// instantiate SOAP client object
    
$client = new SoapClient(null, array('location' => "http://kark.hin.no/internett/php/eksempler/xml/soap/server.php",
                                     
'uri'      => "http://test-uri/"));
        echo 
"PHP versjon er: ",$client->version(),"<br />"// call version() method
        
echo "System: ",$client->name(); // call name() method
?>