...
/**
* Simple sample of main method, it queries the web service for the closest observed holiday to January 1st, 2012.
*/
public static void main(String[] args) throws MalformedURLException
{
HolidayService service = new HolidayServiceLocator();
Calendar newYears = Calendar.getInstance();
...