private NotificationServicePort getPort()
throws NumberFormatException, MalformedURLException {
URL wsdl = getClass().getResource("/wsdl_systest/cxf-993.wsdl");
assertNotNull("WSDL is null", wsdl);
NotificationService service = new NotificationService(wsdl, serviceName);
assertNotNull("Service is null ", service);
NotificationServicePort port = service.getNotificationServicePort();
updateAddressPort(port, PORT);
return port;
}