class WebService_countries_webservice_mobilefish_comService_countries_webservice_mobilefish_comPort extends SOAP_Client
{
    function WebService_countries_webservice_mobilefish_comService_countries_webservice_mobilefish_comPort($path = 'http://www.mobilefish.com/services/web_service/countries.php')
    {
        $this->SOAP_Client($path, 0);
    }
    function &countryInfoByIana($ianacode)
    {
        $result = $this->call('countryInfoByIana',
                              $v = array('ianacode' => $ianacode),
                              array('namespace' => 'http://schemas.xmlsoap.org/soap/envelope/',
                                    'soapaction' => 'http://schemas.xmlsoap.org/soap/envelope/#Countries#countryInfoByIana',
                                    'style' => 'rpc',
                                    'use' => 'encoded'));
        return $result;
    }
    function ®ionsInfoByIana($ianacode)
    {
        $result = $this->call('regionsInfoByIana',
                              $v = array('ianacode' => $ianacode),
                              array('namespace' => 'http://schemas.xmlsoap.org/soap/envelope/',
                                    'soapaction' => 'http://schemas.xmlsoap.org/soap/envelope/#Countries#regionsInfoByIana',
                                    'style' => 'rpc',
                                    'use' => 'encoded'));
        return $result;
    }
    function &getIANAInfo()
    {
        $result = $this->call('getIANAInfo',
                              $v = null,
                              array('namespace' => 'http://schemas.xmlsoap.org/soap/envelope/',
                                    'soapaction' => 'http://schemas.xmlsoap.org/soap/envelope/#Countries#getIANAInfo',
                                    'style' => 'rpc',
                                    'use' => 'encoded'));
        return $result;
    }
}