Hay dos lineas que dan problemas:
 - ServicioWebService ss = new ServicioWebService(wsdlURL, Constantes.SERVICE_NAME);
  -  ServicioWeb port = ss.getServicioWebPort(); 
  
El metodo es: 
Código:
 URL wsdlURL = ServicioWebService.WSDL_LOCATION;
        ServicioWebService ss = new ServicioWebService(wsdlURL, Constantes.SERVICE_NAME);
        ServicioWeb port = ss.getServicioWebPort();  
        {
        	String _probando__return = port.identificarse(textNombre.getText(), password.getText());
	        Gson gson=new Gson();
        	return gson.fromJson(_probando__return, Comercial.class);
        }