public static void main(String... args) throws MalformedURLException {
ServiceLocator.getSingleton().setLocation(new URL("http://localhost:8080/implementation-1.0-SNAPSHOT/org.lestr.astenn.remoteimplementation.api.IService/org.lestr.astenn.remoteimplementation.implementation.Service"));
IService service = ServiceLocator.getSingleton().getService();
System.out.println(service.sayHello());
}// END Method main