public static void main(String[] args) throws NamingException, MalformedURLException {
String wsdlUrl = "http://localhost:8080/wildfly-helloworld-classfiletransformers-8.1.0-SNAPSHOT/HelloBean?wsdl";
Hello webServiceClient = createClient(wsdlUrl, Hello.class);
String result = webServiceClient.sayHello("client");
logger.info(String.format("Message from server: %s", result));
}