public class GeoIPClientTest extends TestCase
{
public void testClient() throws Exception
{
GeoIPServiceClient service = new GeoIPServiceClient();
GeoIPServiceSoap geoIPClient = service.getGeoIPServiceSoap();
System.out.println("The country is: " +
geoIPClient.getGeoIP("216.73.126.120").getCountryName());
}