private Hello getPort() {
URL wsdl = getClass().getResource("/wsdl_systest/mtom.wsdl");
assertNotNull("WSDL is null", wsdl);
HelloService service = new HelloService(wsdl, serviceName);
assertNotNull("Service is null ", service);
Hello hello = service.getHelloPort();
try {
updateAddressPort(hello, PORT);
} catch (Exception ex) {
//ignore
}